Complete post-quantum authentication in a single call. Combines FHE-encrypted biometric matching, zero-knowledge proof generation, quantum-resistant signature, and blockchain attestation.
Request Body
| Parameter |
Type |
Required |
Description |
userId |
string |
Required |
Unique identifier for the user |
biometric |
object |
Required |
Biometric data (face, voice, or fingerprint) |
biometric.type |
string |
Required |
"face" | "voice" | "fingerprint" |
biometric.data |
string |
Required |
Base64-encoded biometric data |
mode |
string |
Optional |
"turbo" (220µs) | "standard" (633µs) | "precision" (2.1ms) |
Example
const result = await h33.auth.fullStack({
userId: 'user_123',
biometric: { type: 'face', data: faceBase64 },
mode: 'turbo'
});