blob: d45fafbbead04978b2ed8245869585f6d7967504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* @packageDocumentation
* @module @simplewebauthn/browser
*/
import { startRegistration } from './methods/startRegistration';
import { startAuthentication } from './methods/startAuthentication';
import { browserSupportsWebAuthn } from './helpers/browserSupportsWebAuthn';
import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable';
import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill';
import { base64URLStringToBuffer } from './helpers/base64URLStringToBuffer';
import { bufferToBase64URLString } from './helpers/bufferToBase64URLString';
import { WebAuthnAbortService } from './helpers/webAuthnAbortService';
export {
base64URLStringToBuffer,
browserSupportsWebAuthn,
browserSupportsWebAuthnAutofill,
bufferToBase64URLString,
platformAuthenticatorIsAvailable,
startAuthentication,
startRegistration,
WebAuthnAbortService,
};
export type { WebAuthnErrorCode } from './helpers/webAuthnError';
|