It includes coding of famous ciphers in simplified and generalized manner. Some popular ciphers in ethical hacking with code in C++
Each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. e.g. abcdefghijklmnopqrstuvwxyz can be coded as defghijklmnopqrstuvwxyzabc when key = 3 letters down,
Decryption is reverse process of it.
- Substitution Cipher
- Symmetric Cipher
- Stream Cipher
- Really easy to crack
The pairs (bigrams) are encrypted with the help of 5x5 playfair matrix.
Decryption is reverse process of it.
- Substitution Cipher
- Symmetric Cipher
- Block Cipher
- Better than Caesar Cipher