[PR #585] [CLOSED] Cryptography using C #1022

Open
opened 2026-01-29 15:16:53 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/585
Author: @Rishabhpatel803
Created: 7/30/2020
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

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

View changed files

ciphers/caeser_cipher.c (+80 -0)
ciphers/playfair_cipher.c (+198 -0)

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 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/585 **Author:** [@Rishabhpatel803](https://github.com/Rishabhpatel803) **Created:** 7/30/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`8692f95`](https://github.com/TheAlgorithms/C/commit/8692f95904d9f7a7781359b89b895573fc718e33) Create caesercipher.c - [`da23e40`](https://github.com/TheAlgorithms/C/commit/da23e4034ba86ade6c446aac6f7ec2f8b16f8fd3) Update caesercipher.c - [`daffee7`](https://github.com/TheAlgorithms/C/commit/daffee7aab173f0183bd5e1061a866b3c47b8ad0) Update caesercipher.c - [`3abbd57`](https://github.com/TheAlgorithms/C/commit/3abbd57cd38a5a6a8dffc3a01fbcb3202aaf7354) Create playfair_cipher.c - [`f923c11`](https://github.com/TheAlgorithms/C/commit/f923c11e787a64e515e1cb264646cd533e1f1f99) Rename caesercipher.c to caeser_cipher.c - [`6a0285d`](https://github.com/TheAlgorithms/C/commit/6a0285d445e3a1e74481d5658b638363d1c1b13d) Update playfair_cipher.c - [`6744ee7`](https://github.com/TheAlgorithms/C/commit/6744ee764ce2134fc90f0d3103a643cfa2b8619b) Update caeser_cipher.c - [`4d863d5`](https://github.com/TheAlgorithms/C/commit/4d863d5fa32322160b00e08c5efe1881f5077167) Update playfair_cipher.c - [`878f0fa`](https://github.com/TheAlgorithms/C/commit/878f0fa33cc2b78b604c34b4220d1a5d3ca26978) Update caeser_cipher.c - [`74071c7`](https://github.com/TheAlgorithms/C/commit/74071c7676624b42311b569b8c649ad037c651a3) Update caeser_cipher.c ### 📊 Changes **2 files changed** (+278 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `ciphers/caeser_cipher.c` (+80 -0) ➕ `ciphers/playfair_cipher.c` (+198 -0) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C-Plus-Plus/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### 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-Plus-Plus/blob/master/CONTRIBUTING.md#New-File-Name-guidelines) - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/585"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Rishabhpatel803/C.git/0e86c46ce944897d050ee97b67f731833f95bb55.svg" /></a> --- <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:16:53 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1022