Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This repo links to solutions of [Projects](https://github.com/thekarangoel/Projects) written by other users in any language. See [how to contribute](https://github.com/thekarangoel/Projects/blob/master/CONTRIBUTING.md) to this repo.

=========================================
===============================================================

Numbers
---------
Expand Down Expand Up @@ -281,5 +281,6 @@ Graphics and Multimedia
Security
-------------

**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)
**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).

[[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)