The hash/ package supplies three families of hashing primitives:
cryptographic (MD5, SHA-1, SHA-256, SHA-512) for integrity and
identifiers, API hashing (ROR13 + ROR13Module) for shellcode-style
plaintext-free function resolution, and fuzzy hashing (ssdeep, TLSH)
for variant detection and similarity scoring.
flowchart TD
Q{What do you need?} -->|fingerprint a buffer| C[SHA256 / MD5]
Q -->|resolve a Win32 API by hash| R[ROR13]
Q -->|find variants of a known sample| F[ssdeep / TLSH]