Developer Tools

Hash, AES-GCM, encoding.

Hash text, encrypt with AES-GCM, or encode and decode Base64 and other formats. These run entirely in the browser so you can work with sensitive data locally.

This category is for developers and technical users who need hashing, encryption, or encoding: checksums, password-based encryption, or safe handling of binary-like data in text form.

Common tasks include hashing text with SHA-256 or SHA-1, encrypting or decrypting a short message with a passphrase (AES-GCM), and encoding or decoding Base64 or URL-safe strings. All crypto runs in the browser; nothing is sent to our servers.

Use the hash generator for integrity checks or non-secret fingerprints. Use AES-GCM when you need to encrypt/decrypt with a password. For encoding only (no secrecy), use the Base64 or URL encode/decode tools in Text Tools.

Developer Tools tools

  • Hash Generator

    Generate SHA-256 or SHA-1 hashes in your browser using the Web Crypto API.

    Open Hash Generator
  • AES-GCM Encrypt/Decrypt

    Password-based AES-GCM (256-bit) with PBKDF2 key derivation; encrypt or decrypt text locally.

    Open AES-GCM Encrypt/Decrypt