Skip to content

Commit b9af144

Browse files
author
Karan Goel
committed
Merge pull request karan#372 from mandliya/master
Caesar Cipher in C++(new)
2 parents 1d748e9 + cfebf0f commit b9af144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ Security
276276
-------------
277277

278278
**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)
279-
[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/caesar.bf) [[viktorahlstrom (Python)]](https://github.com/viktorahlstrom/pythonscripts/blob/master/caesar.py)
279+
[[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)