This project is educational. Do not use Caesar cipher in production.
- Easily breakable by brute-force (only 26 keys).
- Provides no real security for modern use cases.
- No integrity/authentication — ciphertext can be tampered with.
- Use modern ciphers like AES, ChaCha20, or RSA.
- Apply libraries like
cryptographyorPyNaClfor real applications. - Always combine encryption with integrity/authentication (MAC).
- OWASP Cryptographic Storage Cheat Sheet
- NIST Cryptographic Standards