[PR #584] [CLOSED] C Cryptography Algorithms #1013

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

📋 Pull Request Information

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

Base: masterHead: master


📝 Commits (7)

📊 Changes

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

View changed files

ciphers/caeser_cipher.c (+92 -0)
ciphers/playfair_cipher.c (+142 -0)

📄 Description

Description of Change

References

Checklist

  • [x ] Added description of change
  • [x ] Added file name matches File name guidelines
  • [ x] Relevant documentation/comments is changed or added
  • [ x] PR title follows semantic commit guidelines
  • [x ] 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/584 **Author:** [@Rishabhpatel803](https://github.com/Rishabhpatel803) **Created:** 7/29/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (7) - [`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 ### 📊 Changes **2 files changed** (+234 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `ciphers/caeser_cipher.c` (+92 -0) ➕ `ciphers/playfair_cipher.c` (+142 -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/584"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Rishabhpatel803/C.git/6744ee764ce2134fc90f0d3103a643cfa2b8619b.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:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1013