Frequently asked questions
Is my data uploaded anywhere?
No. Hashes are computed entirely in your browser, including files you choose, so nothing is uploaded. SHA hashes use the browser's built-in crypto, and MD5 uses a small library loaded once.
Which algorithms are supported?
MD5, SHA-1, SHA-256, SHA-384 and SHA-512, for both text and files.
Should I use MD5 or SHA-1 for passwords?
No. MD5 and SHA-1 are fine for checksums and file integrity but are not secure for passwords or signatures. Use SHA-256 or stronger, and for passwords a dedicated password hash.
Can I verify a file download?
Yes. Choose the file and pick the algorithm the publisher used, then compare the result with their published checksum to confirm the file is intact.
Does it handle large files?
Files are read into memory and hashed in your browser, so very large files depend on your device's available memory.