Encryption & Keys Tools

Free online encryption tools — AES-256 file encryption, key generation and certificate utilities, all running client-side with the Web Crypto API.

6 tools

Also in Encryption & Keys

Tools from other categories tagged with Encryption & Keys

Why These Tools

AES-256 File Encryptor / Decryptor exists because handing a sensitive file to a browser-based converter usually means handing it to that converter's server first. This one derives a 256-bit key from your passphrase with PBKDF2, run 250,000 times over, then encrypts with AES-GCM so a wrong passphrase produces a clear failure instead of silently garbled bytes. RSA Key Pair Generator and ECDSA / ECDH Key Pair Generator both use the same WebCrypto approach: entropy from crypto.getRandomValues, private keys blurred by default, nothing transmitted. Between them they cover the two main asymmetric families — RSA for legacy compatibility and elliptic curve for modern TLS, JWT and code-signing work. A CSR builder and a certificate decoder come next.