Replace passwords with quantum-safe biometric authentication. Users verify with their face, fingerprint, or voice — encrypted end-to-end via fully homomorphic encryption. Verified with zero-knowledge proofs. No secrets to steal, phish, or forget.
A single API call replaces the entire password lifecycle — no hashing, no salting, no reset emails. The biometric never leaves the encrypted domain.
Passwords are the single largest attack surface in enterprise security. The numbers are unambiguous.
Production benchmarks from Graviton4 (c8g.metal-48xl, 192 vCPUs). Every operation is post-quantum secure.
Enroll and verify users with a single API call. The SDK handles FHE encryption client-side and returns a ZK-attested match result.
// 1. Initialize the H33 client const h33 = new H33Client({ apiKey: "h33_pk_..." }); // 2. Capture biometric & encrypt client-side (FHE) const embedding = await h33.biometric.capture("face"); const encrypted = await h33.fhe.encrypt(embedding); // 3. Verify passwordless — returns ZK-attested result const result = await h33.auth.verifyPasswordless({ userId: "user_abc123", biometric: encrypted, // FHE ciphertext, never plaintext }); // result.match = true | false // result.zkProof = "0x..." (verifiable ZK attestation) // result.dilithiumSig = "..." (post-quantum audit trail)
Passkeys are a step forward from passwords, but they inherit device-binding limitations and lack post-quantum security. H33 goes further.
| Capability | H33 Passwordless | FIDO2 / Passkeys |
|---|---|---|
| Authentication factor | Encrypted biometric (FHE) | Device-bound private key |
| Device independence | Yes — any camera/sensor | No — key tied to device |
| Post-quantum secure | Yes — lattice FHE + Dilithium | No — ECDSA/RSA broken by QC |
| Phishing resistant | Yes — no secret to intercept | Yes — origin-bound |
| Server breach exposure | Zero — FHE ciphertexts only | Public keys only |
| Lost device recovery | Re-scan biometric on new device | Requires backup key or re-enrollment |
| Cryptographic proof of match | ZK proof + Dilithium attestation | Signature only (no match proof) |
| Verification latency | 38.5µs per user | ~50-200ms (network + TPM) |
Free tier includes 10,000 passwordless authentications per month. No credit card required. Full FHE + ZK pipeline from day one.