JAPM
Just Another Password Manager — local AES-256-CBC + PBKDF2 password manager
View on GitHub →
javascriptsecuritypassword-manager
JAPM (Just Another Password Manager) is a fully local and secure password manager written in JS.
How is JAPM secure?
- All data is stored locally in your browser’s LocalStorage
- All data is encrypted using AES-256 CBC
- Your key is derived from your master password using PBKDF-2 SHA-256 with 10k iterations
- Your data never leaves your device — JAPM implements no network features (beside loading the site), meaning you can self-host it for free anywhere (e.g. GitHub Pages, Cloudflare Pages, etc.)
Where is JAPM?
- Hosted on Cloudflare Pages: japm.nullstring.one
- Self-host from GitHub