Encrypted Credential Manager
 
⚙ First time? Configure here
NEW
// Add Credential
0 credentials
PULL FROM VAULT OR ADD NEW
Ready.
01
// Cloudflare Worker Config
worker_url
api_token

Format: {"cloudflareWorkerURL":"https://…workers.dev","apiToken":"your-token"}
Stored in localStorage. Never commit config files with real tokens.

02
// Master Password

Derives AES-256-GCM key via PBKDF2-SHA-256 (200 000 iterations).
A 16-byte random salt is stored in localStorage.
All crypto is client-side — no plaintext ever leaves the browser.

03
// Backup & Restore

Backup includes the PBKDF2 salt + all IV-prepended AES-GCM blobs.
Only the correct password + salt pair can decrypt.

04
// Database Initialisation

Run once after deploying the worker to create the credentials table in Turso DB.