$4.99
Practical encryption utilities for Python apps: AES-256-GCM file and string encryption, password hashing with PBKDF2 (stdlib) and bcrypt fallback, HMAC-SHA256 message signing, and secure key derivation. All built on Python's stdlib hashlib and hmac.
# Encrypt a string
python encrypt.py encrypt --data "my secret" --key $(python encrypt.py keygen)
# Hash a password
python encrypt.py hash --password "hunter2"
# Verify an HMAC signature
python encrypt.py verify --data payload.json --sig abc123 --key $HMAC_KEY