Back to tools
Hash Generator
What is a hash and what is it for?
A hash is a cryptographic function that converts any data into a fixed string of characters. It is unique for each content: if you change a single bit, the hash will be completely different.
- Integrity verification: Compare the hash of a downloaded file with the one published by the developer.
- Secure storage: Passwords are stored as hashes, never in plain text.
- Duplicate detection: Files with the same hash are identical.
Available algorithms
- SHA-256: Current standard, 256 bits. Recommended for most cases.
- SHA-512: More secure, 512 bits. Ideal for very sensitive data.
- MD5: Fast but obsolete for security. Useful for quick verification.
Related Tools
SSL Certificate Verifier
Analyze SSL/TLS certificates and verify their security
PEM to OpenSSH Converter
Convert PEM public keys to OpenSSH authorized_keys format.
.htpasswd Generator
Generate Apache password hashes (Bcrypt, SHA1, MD5)
Shamir Secret Sharing
Split a secret into N shares using polynomial interpolation over GF(256).