Keccak-512 provides the longest standard digest length (128 hex characters) from the original Keccak sponge construction.
Because processing runs entirely on your device, you can hash sensitive development strings, keys, or proprietary configuration files without uploading them to a remote server.
Output differences
Keccak-512 and SHA3-512 are not drop-in replacements for each other. While SHA-3 evolved from the Keccak design, its finalized padding rules mean that it produces a completely different 512-bit digest for the exact same input.
Always verify whether your underlying protocol expects the original Keccak padding or the standardized SHA-3 padding.
Batch processing
To hash multiple text strings at once, paste them into the input field and enable “Batch by newline”. The tool will return a matching list of 128-character digests, making it easy to create lookup tables or verification vectors.
To avoid hidden whitespace issues, enable “Trim lines” to strip trailing spaces or accidental line endings before computing the hash.
Character encodings
Cryptographic hash functions are deterministic down to the individual byte. A space, a different capitalization, or a different Unicode normalization will completely alter the resulting 128-character output.
Use the “Normalize Unicode” option to ensure characters with multiple binary representations are unified before hashing, ensuring stable output across different systems.