Caesar Shift
Classic rotational substitution that shifts alphabetic characters through a fixed offset.
import Layout from '../../../layouts/Layout.astro';
const cryptoScript = Astro.resolve('../../../scripts/cryptography.js'
Module CRY
Paste a signal, tune the parameters, and watch the lab sweep through common ciphers. We run every encoder and decoder in
parallel and surface heuristics so you can zero in on promising leads fast.
Type or paste any text, ciphertext, or encoded payload.
The heuristics pass scores each decoder for language likelihood, entropy, and alphabet fit. Disable it for raw transform
output only.
We attempt every decoder and rank the most plausible outputs. Scores combine alphabet conformity, printable ratios, and
vowel balance checks.
Each module emits both encode and decode results automatically as you type. Classic rotational substitution that shifts alphabetic characters through a fixed offset. Fixed 13-character Caesar shift used frequently in forums and classic puzzle books. Biblical-era monoalphabetic cipher mirroring the alphabet so A ↔ Z, B ↔ Y, etc. Polyalphabetic substitution using a repeating key phrase across the alphabet grid. Binary-to-text encoding using the RFC 4648 alphabet for transport across ASCII-only channels. RFC 4648 alphabet translating bytes into a human-friendly alphanumeric block with optional padding. Bitcoin-style alphabet omitting ambiguous glyphs for resilient payload sharing. Adobe variant encoding 4-byte blocks into a compact base-85 alphabet with zero-compression. Two-character per byte representation aligned with packet captures, firmware dumps, and memory scans. Eight-bit binary groupings for quick inspection of raw byte patterns and ASCII toggling. Dits and dahs for radio era transmissions with support for letters, numerals, and punctuation. Percent-encoding for safely embedding binary data inside query strings and HTTP headers. Zig-zag transposition cipher that writes characters across multiple rails before reading row-wise. Repeating-key XOR for rapid bitwise masking and classical stream cipher exploration. Linear function substitution using modular arithmetic coefficients for substitution tuning.Cryptography Lab
Operations Playground
Input signal
Heuristic sweep
Transform Library
Caesar Shift
Encode
Decode
ROT13
Encode
Decode
Atbash
Encode
Decode
Vigenère
Encode
Decode
Base64
Encode
Decode
Base32
Encode
Decode
Base58
Encode
Decode
ASCII85
Encode
Decode
Hexadecimal
Encode
Decode
Binary
Encode
Decode
Morse Code
Encode
Decode
URL Encoding
Encode
Decode
Rail Fence
Encode
Decode
XOR Stream
Encode
Decode
Affine Cipher
Encode
Decode