Generatore di Hash
Genera hash SHA-1, SHA-256, SHA-384 e SHA-512 da qualsiasi testo. Verifica l'integrità dei dati istantaneamente. Gratuito, 100% nel browser.
Riferimento
Cos'è un hash crittografico?
A cryptographic hash is a fixed-length string derived from arbitrary input data. It is a one-way function: computationally infeasible to reverse. The same input always produces the same output (deterministic).
Algorithms
SHA-1 (160-bit) — deprecated for security use; still found in legacy systems and Git. SHA-256 (256-bit) — the most widely used; Bitcoin, TLS, file integrity. SHA-384 / SHA-512 (384/512-bit) — higher security margin, used in government and financial systems.
Common uses
- File integrity: compare checksum before and after download.
- Password storage: never store plain passwords — store their hash (use bcrypt/Argon2 in production).
- Digital signatures: sign the hash of a document, not the document itself.
- Data deduplication: detect identical files by comparing hashes.
Funzioni hash di nuova generazione
SHA-3 (Keccak, standardizzato in FIPS 202) offre una struttura interna completamente diversa da SHA-2, fornendo una difesa in profondità nel caso SHA-2 venga compromesso. BLAKE3 è una funzione hash moderna e parallelizzabile ottimizzata per la velocità — significativamente più veloce di SHA-256 su CPU multi-core. Tuttavia, né SHA-3 né BLAKE3 sono ancora disponibili nella Web Crypto API. Per la maggior parte delle applicazioni, SHA-256 rimane lo standard ed è il default raccomandato.
Privacy
Hashing runs 100% in your browser using the native Web Crypto API (crypto.subtle.digest()). No data is ever sent to a server.