Caesar Cipher
Shifts each alphabetic character by a fixed offset.
Cryptography
Explore classical ciphers, symmetric ideas, public-key arithmetic, key exchange, and hashing with small inspectable examples.
Technique set
Shifts each alphabetic character by a fixed offset.
Uses a repeated keyword to apply a different Caesar shift to each letter.
Maps each plaintext letter to another fixed letter.
Writes text in a zigzag across rails, then reads each rail left to right.
Combines each byte with a repeated key byte using XOR.
Builds tiny public/private keys from two primes, then encrypts a small number.
Shows how two parties derive the same shared secret over a public channel.
Compresses a message into a fixed-size fingerprint.
Security boundary
The lab intentionally uses small values and transparent steps. Real systems should rely on modern, reviewed libraries and protocols.