Powered by Rust • Open Source
Your Digital Life, Secured
The most secure, lightning-fast password manager built with Rust. Manage passwords, One-time-passwords and notes with high encryption.
Zero‑knowledge encryption
Rust‑powered backend
Open source • MIT
Salattu Vault Preview
Passwords
- github.com••••••••
- bank.example••••••••
- mail.example••••••••
One-time-password
- GitHub302 911
- Bank119 004
- Mail845 220
Notes
- VPN credentials for work
- Recovery codes
- Server root access
Features
Everything you need, nothing you don't
A complete security suite designed for modern digital life
Password Manager
Generate, store, and autofill strong passwords across all your devices with military-grade encryption.
Authenticator
Built-in TOTP authenticator for two-factor authentication. No need for separate apps.
Notes
Store sensitive information like credit cards, documents, and personal notes with end-to-end encryption.
Zero-Knowledge Architecture
Your data is encrypted before it leaves your device. We can't see your passwords, even if we wanted to.
Lightning Fast
Built with Rust for maximum performance. Instant search, quick autofill, and minimal resource usage.
Cross-Platform Sync
Seamlessly sync across Windows, macOS, Linux, iOS, and Android with real-time updates.
Rust-Powered Backend
Built for Security & Performance
Our backend is written in Rust, the systems programming language that guarantees memory safety and delivers blazing-fast performance without compromising security.
Memory Safety
Zero buffer overflows or memory leaks
Lightning Fast
Near C++ performance with safety
Secure by Design
Compile-time security guarantees
Low Resource Usage
Minimal CPU and memory footprint
crypto.rs
use aes_gcm::{Aes256Gcm, Key, Nonce};
use argon2::{Argon2, PasswordHash};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
pub struct EncryptedVault {
pub data: Vec<u8>,
pub nonce: [u8; 12],
pub salt: [u8; 32],
}
impl VaultManager {
pub fn encrypt_vault(&self,
data: &[u8],
password: &str
) -> Result<EncryptedVault> {
// Zero-knowledge encryption
let cipher = Aes256Gcm::new(&key);
// ... secure implementation
}
}*Not an exact representation of the backend, but rather a simple recreation for illustration purposes.
100% Open Source
Transparency You Can Trust
Security through transparency. Every line of code is open source and auditable. No hidden backdoors, no secret algorithms, no vendor lock-in.
MIT Licensed
Free to use, modify, and distribute. Build your own version or contribute to ours.
Community Driven
Join the community improving password management for everyone.
Security Audited
Regular third-party security audits with public reports. Your trust is earned, not assumed.