[PR #1367] [CLOSED] Added new ciphers #1970

Closed
opened 2026-01-29 15:26:54 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1367
Author: @Thunder-Ultra
Created: 10/30/2023
Status: Closed

Base: masterHead: added-new-ciphers


📝 Commits (6)

  • 9756e48 Created a new file caesar_cipher.c for code of caesar cipher
  • 84e7d37 Create the starting code for caesar cipher
  • 8b760b5 Finalised the code!
  • bf04d68 Finalised the Code!
  • e4809a1 Added Test Cases
  • 75fbe30 Added Test Cases

📊 Changes

2 files changed (+128 additions, -0 deletions)

View changed files

📝 .vscode/settings.json (+3 -0)
cipher/caesar_cipher.c (+125 -0)

📄 Description

Description of Change

Added Program for Ceasar Cipher along with its own test cases.

References

Nil

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:
I have created a file named caesar_cipher.c in the folder cipher, which automatically test its validity with the given tests.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1367 **Author:** [@Thunder-Ultra](https://github.com/Thunder-Ultra) **Created:** 10/30/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `added-new-ciphers` --- ### 📝 Commits (6) - [`9756e48`](https://github.com/TheAlgorithms/C/commit/9756e4827bc0253a8f229b65afa50d2690c1d4fe) Created a new file caesar_cipher.c for code of caesar cipher - [`84e7d37`](https://github.com/TheAlgorithms/C/commit/84e7d370da581dc322b34ed5856996e64a39e2a7) Create the starting code for caesar cipher - [`8b760b5`](https://github.com/TheAlgorithms/C/commit/8b760b5a02e5a36d0b1aa937020f99bcedfbdc37) Finalised the code! - [`bf04d68`](https://github.com/TheAlgorithms/C/commit/bf04d689cad2e2a98dfcb78110b953f81bcacd61) Finalised the Code! - [`e4809a1`](https://github.com/TheAlgorithms/C/commit/e4809a17fe0225de7422d3e56c2f6038ed6d1a66) Added Test Cases - [`75fbe30`](https://github.com/TheAlgorithms/C/commit/75fbe30a78937f8081e3066f51f09a24f441400f) Added Test Cases ### 📊 Changes **2 files changed** (+128 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+3 -0) ➕ `cipher/caesar_cipher.c` (+125 -0) </details> ### 📄 Description #### Description of Change Added Program for Ceasar Cipher along with its own test cases. <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> Nil #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> I have created a file named caesar_cipher.c in the folder cipher, which automatically test its validity with the given tests. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:26:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1970