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.

JAPM screenshot

How is JAPM secure?

  1. All data is stored locally in your browser’s LocalStorage
  2. All data is encrypted using AES-256 CBC
  3. Your key is derived from your master password using PBKDF-2 SHA-256 with 10k iterations
  4. 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?