@mcdkio/n3m
v1.0.0
Published
Deterministic password generator using PBKDF2-HMAC-SHA256
Maintainers
Readme
n3m
Deterministic password generator using PBKDF2-HMAC-SHA256.
Installation
npm install -g n3mUsage
n3m <master_password> <item>Example
n3m "my-secret-master" gmail
# Output: a3hk5v2xpm9w
# (copied to clipboard)How It Works
- Combines your master password with the item name using PBKDF2 (100,000 iterations)
- Generates a deterministic 12-character password with digits and letters
- Same inputs always produce the same password
Features
- Zero dependencies - uses Node.js built-in crypto
- Deterministic - same master + item = same password
- Secure - PBKDF2-HMAC-SHA256 with 100k iterations
- Clipboard - automatically copies to clipboard (Linux with xclip)
License
MIT
