Generators

Hash & Checksum Generator: MD5, SHA-1, SHA-256, SHA-512, CRC32

Β·Equipo SolvyaΒ·3 min read

Calculate cryptographic hashes (MD5, SHA-1, SHA-256, SHA-384, SHA-512, RIPEMD-160, BLAKE2b) and checksums (CRC32, CRC32C, Adler-32) from text or files. Compare integrity, verify downloads, sign data. 100 % client-side (Web Crypto API / WASM), no file uploads.

ℹ️ This content is educational and informational. It does not constitute professional advice. Consult a specialist before making decisions.

A hash is a fixed-length β€œdigital fingerprint” that uniquely identifies content. Our hash & checksum generator computes cryptographic and integrity algorithms on text or files β€” 100 % in your browser, no uploads, works offline.

Supported algorithms

Cryptographic (security: signatures, certificates, blockchain, Git, TLS)

Algorithm Length Status Main use
MD5 128 bit (32 hex) πŸ’₯ Broken (collisions 2004) Legacy only / non-secure checksums
SHA-1 160 bit (40 hex) πŸ’₯ Broken (SHAttered 2017) Legacy only / Git (migrating to SHA-256)
SHA-224 224 bit (56 hex) βœ… Secure Certificates, compatibility
SHA-256 256 bit (64 hex) βœ… Current standard TLS 1.2/1.3, Bitcoin, Git, signatures, Linux ISOs
SHA-384 384 bit (96 hex) βœ… Secure TLS, high-security certificates
SHA-512 512 bit (128 hex) βœ… Secure Password hashing (with salt/iterations), signatures
SHA3-256 256 bit βœ… Modern (Keccak) Post-quantum, new designs
SHA3-512 512 bit βœ… Modern Post-quantum
BLAKE2b 512 bit (configurable) βœ… Modern, faster than SHA-2 High-performance apps, Argon2
RIPEMD-160 160 bit βœ… Secure (niche) Bitcoin (P2PKH addresses + SHA-256)

Checksums / Non-cryptographic (transmission/storage integrity)

Algorithm Length Use
CRC32 (ISO 3309) 32 bit (8 hex) ZIP, PNG, gzip, Ethernet, SATA
CRC32C (Castagnoli) 32 bit iSCSI, SCTP, Btrfs, ext4, Google Cloud Storage
Adler-32 32 bit zlib, rsync (fast, less robust than CRC32)

CRC β‰  Cryptographic hash. CRC detects random errors (noise, bit rot). Does not resist intentional tampering.

HMAC (authentication + integrity with secret key)

Algorithm Use
HMAC-SHA-256 JWT (HS256), webhooks (Stripe, GitHub, Slack), signed cookies, API keys
HMAC-SHA-512 High security, long keys

HMAC = H(key βŠ• opad, H(key βŠ• ipad, message)). Only key holder can generate/verify.

Architecture: 100 % Client-Side (Web Crypto API)

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  BROWSER (your device)                                      β”‚
β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  β”‚
β”‚  β”‚ File API /      │───▢│ SubtleCrypto.digest()         β”‚  β”‚
β”‚  β”‚ Text Input      β”‚    β”‚ (SHA-256, SHA-384, SHA-512,   β”‚  β”‚
β”‚  β”‚                 β”‚    β”‚  SHA-1, MD5, SHA-3, BLAKE2*)  β”‚  β”‚
β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜  β”‚
β”‚         β”‚                        β”‚                           β”‚
β”‚         β”‚               β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”                 β”‚
β”‚         β”‚               β”‚ WASM (CRC32,    β”‚                 β”‚
β”‚         β”‚               β”‚  CRC32C,        β”‚                 β”‚
β”‚         └───────────────▢│  Adler-32,      β”‚                 β”‚
β”‚                          β”‚  RIPEMD-160)    β”‚                 β”‚
β”‚                          β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                 β”‚
β”‚                                    β”‚                         β”‚
β”‚                                    β–Ό                         β”‚
β”‚                          β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”                β”‚
β”‚                          β”‚ Hex / Base64    β”‚                β”‚
β”‚                          β”‚ Output + Copy   β”‚                β”‚
β”‚                          β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β–²                         β–²
        β”‚                         β”‚
   ZERO NETWORK              ZERO SERVER
  • Web Crypto API (SubtleCrypto): native, CSPRNG, implemented in browser C++ (constant-time, side-channel resistant).
  • WASM for non-native algorithms (CRC32, CRC32C, Adler-32, RIPEMD-160, BLAKE2b) β€” compiled from Rust/Go, auditable.
  • Chunked streaming (2–8 MB): file.stream().pipeThrough(new TransformStream(...)) β†’ crypto.subtle.digest() incremental. 10+ GB files without OOM.

Common use cases

Case Algorithm Flow
Verify Linux ISO / firmware SHA-256 Download official .sha256sum β†’ drag ISO β†’ compare
Verify ZIP download / GitHub release SHA-256 / SHA-512 Release assets β†’ sha256.txt β†’ compare
Backup / local file integrity SHA-256 + CRC32 Crypto hash (security) + CRC (bit rot detection)
Sign API payload / webhook HMAC-SHA-256 Shared secret β†’ generate HMAC β†’ X-Signature header
Verify Stripe / GitHub webhook HMAC-SHA-256 Copy Stripe-Signature / X-Hub-Signature-256 β†’ paste key β†’ verify
Bitcoin address (legacy) SHA-256 + RIPEMD-160 RIPEMD160(SHA256(pubkey)) β†’ Base58Check
Git commit ID SHA-1 (legacy) / SHA-256 (new) git hash-object / git log --format=%H
File deduplication SHA-256 / BLAKE2b Hash each file → hash→paths map → detect duplicates

Built-in comparator (avoids visual errors)

Paste reference hash β†’ comparator highlights:

Generated:  a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e
Expected:  A591A6D40BF420404A011733CFB7B190D62C65BF0BCDA32B57B277D9AD9F146E
            β–²                                              β–²
         βœ… Match (case-insensitive hex)

Export for audit / CI

[
  {
    "file": "ubuntu-24.04-live-server-amd64.iso",
    "size": 1234567890,
    "algorithm": "SHA-256",
    "hash_hex": "a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e",
    "hash_b64": "pZGm1Av0IFAEgRczz7exkNYsbL8LzaM3V7J32a2fFG4=",
    "timestamp": "2026-09-13T10:15:30.123Z"
  }
]

Privacy and limits

  • Files never uploaded: File object β†’ ReadableStream β†’ SubtleCrypto.digest() β€” all in tab memory.
  • Offline: after first load (Service Worker / cache), works without internet.
  • Limits: browser RAM (Chrome/FF desktop ~ 4–8 GB heap; chunked streaming allows > 10 GB). Mobile: ~1–2 GB.
  • No logs, no analytics, no cookies on the tool.

Calculate hash / checksum now.

References

  • NIST FIPS 180-4 (SHA-1, SHA-2 family)
  • NIST FIPS 202 (SHA-3 / Keccak)
  • RFC 6234 (HMAC)
  • RFC 7693 (BLAKE2)
  • ISO 3309 / ISO 13239 (CRC32)
  • RFC 3720 (CRC32C / Castagnoli)
  • Bitcoin Protocol (RIPEMD-160 + SHA-256 β†’ Base58Check)

Verify a download or sign a payload? β†’ Open hash generator β€” drag your file, pick algorithm, compare instantly.

Publicidad / Advertisement