diff options
author | Matthew Miller <matthew@millerti.me> | 2023-09-27 22:56:58 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-09-27 22:56:58 -0700 |
commit | 4e542384080b46c8b6a829b78059447ff24b311d (patch) | |
tree | a750b060495324edaa81dbcf7a4a34bed864be32 /packages/browser/src | |
parent | d9f85dbbffda27f27fbf8fa2341fb67aca93e201 (diff) |
Export both base64url helpers
Diffstat (limited to 'packages/browser/src')
-rw-r--r-- | packages/browser/src/index.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 77cd491..9e75d75 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -7,10 +7,14 @@ 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'; export { + base64URLStringToBuffer, browserSupportsWebAuthn, browserSupportsWebAuthnAutofill, + bufferToBase64URLString, platformAuthenticatorIsAvailable, startAuthentication, startRegistration, |