← Back to Auth Vault

Password Hasher

$4.99

Secure password hashing toolkit with PBKDF2 (bcrypt-compatible work factors) and scrypt (Argon2-compatible memory hardness). Includes strength validation, breach detection via k-anonymity, timing-safe comparisons, and migration helpers. Runs on Python 3.10+ stdlib only.

# Hash a password with PBKDF2
python main.py hash --algorithm pbkdf2 --password "my-secure-password"

# Verify a password against a hash
python main.py verify --hash "$pbkdf2$..." --password "my-secure-password"

# Check password strength
python main.py strength --password "my-secure-password"
Grab This — $4.99