|
1 | | -import { convertAAGUIDToString } from './convertAAGUIDToString.ts'; |
2 | | -import { convertCertBufferToPEM } from './convertCertBufferToPEM.ts'; |
3 | | -import { convertCOSEtoPKCS } from './convertCOSEtoPKCS.ts'; |
4 | | -import { decodeAttestationObject } from './decodeAttestationObject.ts'; |
5 | | -import { decodeClientDataJSON } from './decodeClientDataJSON.ts'; |
6 | | -import { decodeCredentialPublicKey } from './decodeCredentialPublicKey.ts'; |
7 | | -import { generateChallenge } from './generateChallenge.ts'; |
8 | | -import { generateUserID } from './generateUserID.ts'; |
9 | | -import { getCertificateInfo } from './getCertificateInfo.ts'; |
10 | | -import { isCertRevoked } from './isCertRevoked.ts'; |
11 | | -import { parseAuthenticatorData } from './parseAuthenticatorData.ts'; |
12 | | -import { toHash } from './toHash.ts'; |
13 | | -import { validateCertificatePath } from './validateCertificatePath.ts'; |
14 | | -import { verifySignature } from './verifySignature.ts'; |
15 | | -import { isoBase64URL, isoCBOR, isoCrypto, isoUint8Array } from './iso/index.ts'; |
16 | | -import * as cose from './cose.ts'; |
17 | | - |
18 | | -export { |
19 | | - convertAAGUIDToString, |
20 | | - convertCertBufferToPEM, |
21 | | - convertCOSEtoPKCS, |
22 | | - cose, |
23 | | - decodeAttestationObject, |
24 | | - decodeClientDataJSON, |
25 | | - decodeCredentialPublicKey, |
26 | | - generateChallenge, |
27 | | - generateUserID, |
28 | | - getCertificateInfo, |
29 | | - isCertRevoked, |
30 | | - isoBase64URL, |
31 | | - isoCBOR, |
32 | | - isoCrypto, |
33 | | - isoUint8Array, |
34 | | - parseAuthenticatorData, |
35 | | - toHash, |
36 | | - validateCertificatePath, |
37 | | - verifySignature, |
38 | | -}; |
39 | | - |
40 | | -import type { |
41 | | - AttestationFormat, |
42 | | - AttestationObject, |
43 | | - AttestationStatement, |
44 | | -} from './decodeAttestationObject.ts'; |
45 | | -import type { CertificateInfo } from './getCertificateInfo.ts'; |
46 | | -import type { ClientDataJSON } from './decodeClientDataJSON.ts'; |
47 | | -import type { |
48 | | - COSEPublicKey, |
49 | | - COSEPublicKeyEC2, |
50 | | - COSEPublicKeyOKP, |
51 | | - COSEPublicKeyRSA, |
52 | | -} from './cose.ts'; |
53 | | -import type { ParsedAuthenticatorData } from './parseAuthenticatorData.ts'; |
54 | | - |
55 | | -export type { |
56 | | - AttestationFormat, |
57 | | - AttestationObject, |
58 | | - AttestationStatement, |
59 | | - CertificateInfo, |
60 | | - ClientDataJSON, |
61 | | - COSEPublicKey, |
62 | | - COSEPublicKeyEC2, |
63 | | - COSEPublicKeyOKP, |
64 | | - COSEPublicKeyRSA, |
65 | | - ParsedAuthenticatorData, |
66 | | -}; |
| 1 | +export * from './convertAAGUIDToString.ts'; |
| 2 | +export * from './convertCertBufferToPEM.ts'; |
| 3 | +export * from './convertCOSEtoPKCS.ts'; |
| 4 | +export * from './decodeAttestationObject.ts'; |
| 5 | +export * from './decodeClientDataJSON.ts'; |
| 6 | +export * from './decodeCredentialPublicKey.ts'; |
| 7 | +export * from './generateChallenge.ts'; |
| 8 | +export * from './generateUserID.ts'; |
| 9 | +export * from './getCertificateInfo.ts'; |
| 10 | +export * from './isCertRevoked.ts'; |
| 11 | +export * from './parseAuthenticatorData.ts'; |
| 12 | +export * from './toHash.ts'; |
| 13 | +export * from './validateCertificatePath.ts'; |
| 14 | +export * from './verifySignature.ts'; |
| 15 | +export * from './iso/index.ts'; |
| 16 | +export * as cose from './cose.ts'; |
0 commit comments