Skip to content

Commit cfebf0f

Browse files
committed
Merge pull request karan#1 from mandliya/mandliya-project-solutions
Caesar Cipher in C++
2 parents acf2437 + c443719 commit cfebf0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,4 @@ Security
275275
-------------
276276

277277
**Caesar cipher** - Implement a Caesar cipher, both encoding and decoding. The key is an integer from 1 to 25. This cipher rotates the letters of the alphabet (A to Z). The encoding replaces each letter with the 1st to 25th next letter in the alphabet (wrapping Z to A). So key 2 encrypts "HI" to "JK", but key 20 encrypts "HI" to "BC". This simple "monoalphabetic substitution cipher" provides almost no security, because an attacker who has the encoded message can either use frequency analysis to guess the key, or just try all 25 keys. [[shyamsalimkumar (Python)]](https://github.com/shyamsalimkumar/Projects/blob/master/Security/caesar_cipher.py) [[sriniavireddy (python)]](https://github.com/sriniavireddy/scripts-and-solutions/blob/master/CaesarCipher.py) [[hx1997 (C)]](https://github.com/hx1997/Projects/blob/master/Security/caesar.c) [[MikroMan (Java)]](https://github.com/MikroMan/Contributions/blob/master/Cipher.java) [[sicter (Python)]](https://github.com/sicter/CaesarCipher/blob/master/CaesarCipher.py) [[neivin (Python)]](https://github.com/neivin/projects/blob/master/security/caesar_cipher.py)[[chasmani(Ruby)]](https://github.com/chasmani/RubyBuildingBlocks/blob/master/caesar_cipher.rb)[[vdrey(Python)]](https://github.com/vdrey/Project-Programs/blob/master/Python/caesarCipher.py) [[kingballer29(Scala)]](https://github.com/kingballer29/Programming/blob/master/caesarCipher.scala)
278-
[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/caesar.bf) [[viktorahlstrom (Python)]](https://github.com/viktorahlstrom/pythonscripts/blob/master/caesar.py)
278+
[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/caesar.bf) [[viktorahlstrom (Python)]](https://github.com/viktorahlstrom/pythonscripts/blob/master/caesar.py) [[mandliya(C++)]](https://github.com/mandliya/short-fun-projects/blob/master/caesarCipher/caesarCipher.cpp)

0 commit comments

Comments
 (0)