Practitioner’s map
Ecosystem
Real-world tools, libraries, and services that work with the algorithms in the catalog. Cross-linked: each tool page lists the hash families it touches and links back into the relevant catalog pages.
Password cracking
Tools that recover plaintexts from hashed passwords. Defensive use cases: audit your own organization, test password policies, validate hash storage choices.
Hash identification
Given a hash string, guess which algorithm produced it. The natural first step before running a cracker.
Hashing libraries
What real applications actually call when they hash something. Mature, audited, language-agnostic.
OpenSSL (& BoringSSL, LibreSSL)
The dominant open-source crypto library. CLI: `openssl dgst -sha256`. Library: libcrypto. Forks include BoringSSL (Google) and LibreSSL (OpenBSD).
libsodium (& HACL*)
Frank Denis's modern crypto library. Defaults to BLAKE2b for generic hashing, Argon2id for password hashing, HKDF-SHA-512 for KDF.
Command line
Hash a file from the terminal in one line.
Fuzzy / similarity hashing
Hashes that survive small input changes. Used heavily in malware analysis to cluster variants and identify families.
Hash databases & services
Centralized indexes that answer 'has anyone seen this hash before?' for files, passwords, or malware samples.