Przejdź do treści

Generator Skrótów

Generuj skróty SHA-1, SHA-256, SHA-384 i SHA-512 z dowolnego tekstu. Weryfikuj integralność danych natychmiast. Darmowe, 100% w przeglądarce.

Wpisz lub wklej tekst, aby wygenerować hashe.

Co to jest skrót kryptograficzny?

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.

Funkcje hash nowej generacji

SHA-3 (Keccak, standaryzowany w FIPS 202) oferuje całkowicie inną strukturę wewnętrzną niż SHA-2, zapewniając ochronę w głębokości na wypadek, gdyby SHA-2 został skompromitowany. BLAKE3 to nowoczesna, równoległa funkcja hash zoptymalizowana pod kątem szybkości — znacznie szybsza niż SHA-256 na wielordzeniowych procesorach. Jednak ani SHA-3, ani BLAKE3 nie są jeszcze dostępne w Web Crypto API. Dla większości zastosowań SHA-256 pozostaje standardem i jest zalecanym domyślnym wyborem.

Privacy

Hashing runs 100% in your browser using the native Web Crypto API (crypto.subtle.digest()). No data is ever sent to a server.