Local CredVault — No Cloud, No Build

Stores credentials in-memory. Encrypt/decrypt to share/backup. TOTP built-in (SHA‑1, 6 digits, 30s).

Add or Update Credential

Vault

Each entry follows: CredSet = [username, password, codegen, custom_kvp]

Encrypt & Save

Load & Decrypt

Encryption Details
  • Key Derivation: PBKDF2 (SHA‑256), default 200,000 iterations
  • Symmetric Cipher: AES‑GCM (256‑bit), 12‑byte IV
  • Envelope contains: version, kdf, iterations, salt(b64), iv(b64), cipher(b64)
  • No cloud; no storage. Refreshing the page clears memory.