summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/index.ts
blob: 356ec2e35bd07dc417f3bcc5832382dae0016f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import generateAttestationCredentials from './attestation/generateAttestationCredentials';
import verifyAttestationResponse from './attestation/verifyAttestationResponse';
import generateAssertionCredentials from './assertion/generateAssertionCredentials';
import verifyAssertionResponse from './assertion/verifyAssertionResponse';

export {
  generateAssertionCredentials,
  verifyAttestationResponse,
  generateAttestationCredentials,
  verifyAssertionResponse,
};

export {
  EncodedAuthenticatorAssertionResponse,
  EncodedAuthenticatorAttestationResponse,
  VerifiedAttestation,
  VerifiedAssertion,
  AuthenticatorDevice,
} from './libTypes';