Passwords for developers who ship fast
Open source password manager built for the terminal-first workflow. CLI support, browser extension, and zero-knowledge architecture.
Trusted by developers at
Built for the way you work
Every feature designed with developers in mind. No bloat, just the tools you need.
Get in Chrome Web Store
Install the Keyforge extension directly from Chrome Web Store with one click
Zero Knowledge
Your data never leaves your device unencrypted
Fast Autofill
Instant credential matching
AES-256 Encryption
Military-grade encryption for all your credentials
Biometric Unlock
Use TouchID or FaceID for quick access
Sync Anywhere
Encrypted sync across all devices
Git Integration
Version control for your vault
SSH Key Management
Securely store and manage SSH keys
$ keyforge ssh add ~/.ssh/id_ed25519Get started in minutes
From install to autofill in under 5 minutes
Install Extension
Add Keyforge to your browser in one click. Available for Chrome, Firefox, and Safari.
Create Master Key
Generate a secure master password. This is the only password you'll need to remember.
Import Credentials
Import from other password managers or start fresh. All data is encrypted locally.
Start Shipping
Autofill credentials instantly. Use CLI for terminal workflows. Ship faster, stay secure.
Your data stays yours
Keyforge uses zero-knowledge architecture. Your master password never leaves your device, and all encryption happens locally. Even we cannot access your data.
1// Keyforge encryption flow2import { encrypt, derive } from '@keyforge/core';3 4async function encryptVault(data: VaultData) {5 // Derive key from master password (PBKDF2)6 const key = await derive(masterPassword, {7 salt: crypto.randomBytes(32),8 iterations: 600_000,9 hash: 'SHA-256'10 });11 12 // Encrypt with AES-256-GCM13 const encrypted = await encrypt(data, key, {14 algorithm: 'AES-256-GCM',15 iv: crypto.randomBytes(12)16 });17 18 return encrypted; // Never leaves device unencrypted19}How we compare
The features developers actually need
| Feature | Keyforge | LastPass | 1Password | Bitwarden |
|---|---|---|---|---|
| Open Source | ||||
| CLI Support | ||||
| Zero Knowledge | ||||
| Self-hosted Option | ||||
| Git Integration | ||||
| SSH Key Management | ||||
| Free Tier | unlimited | limited | trial | unlimited |
Password Manager for Developers
Best password manager I've used. The autofill is lightning fast!
Finally a password manager that understands developers. Love the CLI integration.
Loved by developers
See what engineers are saying about Keyforge
Frequently asked questions
Everything you need to know about Keyforge
Yes! Keyforge is open source and free for personal use. We offer a Pro plan for teams that need advanced features like shared vaults, audit logs, and priority support.
Ready to ship securely?
Join thousands of developers who trust Keyforge for their credential management. Free forever, open source, and built for the terminal.