Anything that touches plaintext is open source
The encryption engine, the daemon, and every language package can see secrets in plaintext - so all of them are MIT-licensed and auditable before any sales conversation. No NDA, no trust-us.
Kryptic's security model is designed to be verified, not believed: everything that can see a secret in plaintext is open source, and the server-side platform only ever stores ciphertext.
The encryption engine, the daemon, and every language package can see secrets in plaintext - so all of them are MIT-licensed and auditable before any sales conversation. No NDA, no trust-us.
AES-256-GCM, P-256 ECDH, and Argon2id from platform crypto libraries, composed - never reimplemented. The engineering lives in the key hierarchy, envelope format, and rotation behavior.
Values are encrypted end-to-end: your browser, daemon, or CI runner holds the org key, and the server stores only ciphertext and key grants sealed to your devices. There is no server-side decrypt path to misuse.
The daemon holds secrets in memory with a 5-minute TTL and serves them over a local OS socket that never crosses a network. Nothing is written to disk on developer machines.
The encryption engine ships with a SECURITY.md describing the full key hierarchy - what is derived from what, where each key lives, and exactly what the server can and cannot see - plus the test vectors that prove it. The daemon, the CLI and all seven language packages (.NET, Node.js, Python, Java, Go, Ruby, C++) are MIT-licensed in the same organization.
Read the code on GitHubTrust should be earned in public. We run adversarial reviews of the code that runs on your machine and publish every finding alongside the fix we shipped, including the issues we had to correct. It is the clearest way to show that we are actively hunting for weaknesses rather than waiting for someone else to.
See the latest auditReport suspected vulnerabilities to [email protected]. We acknowledge within 48 hours, keep you informed while we fix, and credit reporters who want to be credited. Please do not open public issues for security reports.