summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-09-27 23:04:47 -0700
committerGitHub <noreply@github.com>2023-09-27 23:04:47 -0700
commitf4af75d1f2f88499dc8c927cb08264c144428beb (patch)
tree3190434f25a3cc3bc61d805e66d42fec542d9d21 /packages/browser/src/index.ts
parentd9f85dbbffda27f27fbf8fa2341fb67aca93e201 (diff)
parent9753ee22b957ce1d94382e8af604efbc11eaebd8 (diff)
Merge pull request #444 from MasterKale/feat/export-base64url-helpers-browser
feat/export-base64url-helpers-browser
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r--packages/browser/src/index.ts4
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,