/** * ANAMNESIS — The 8th Protocol Primitive (K8) * * Distributed Recognition authentication for Sequence0. * The network doesn't verify you — it KNOWS you. * * Layer 1: T-OPRF (threshold password verification) * Layer 1: WebAuthn (hardware-bound device passkeys) * Layer 2: Behavioral context capture (device fingerprinting) * * @module auth */ export { authenticate, enroll } from './oprf'; export type { OprfPartialEval, OprfAuthResult } from './oprf'; export { registerPasskey, authenticatePasskey, isWebAuthnSupported } from './webauthn'; export type { WebAuthnCredential, WebAuthnAssertionResult } from './webauthn'; export { captureContext } from './context'; export type { BehavioralContext } from './context'; //# sourceMappingURL=index.d.ts.map