Text Encryption

Encrypt and decrypt text using AES, ChaCha20, RSA, ECC, and other encryption algorithms

✓ AES (128/192/256)✓ ChaCha20✓ Blowfish✓ Twofish✓ Camellia✓ RSA (2048/4096)✓ ECC (P256/P384/P521)✓ ElGamal✓ Hybrid (RSA+AES, ECC+AES)⚠️ DES/3DES/RC4

Encryption

AES 256-bit with Galois/Counter Mode - Authenticated encryption

Important Notes:

  • Save the IV value - required for decryption
  • Save the Salt value - required for decryption
  • All encryption is done client-side in your browser
  • No data is sent to any server

Decryption

AES 256-bit with Galois/Counter Mode - Authenticated encryption

Requirements:

  • Use the same algorithm that was used for encryption
  • IV value from the encryption output
  • Salt value from the encryption output
  • The same password used during encryption