summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r--packages/browser/src/methods/startRegistration.ts26
1 files changed, 19 insertions, 7 deletions
diff --git a/packages/browser/src/methods/startRegistration.ts b/packages/browser/src/methods/startRegistration.ts
index 74da7fd..9f4a104 100644
--- a/packages/browser/src/methods/startRegistration.ts
+++ b/packages/browser/src/methods/startRegistration.ts
@@ -67,23 +67,35 @@ export async function startRegistration(
// L3 says this is required, but browser and webview support are still not guaranteed.
let responsePublicKeyAlgorithm: number | undefined = undefined;
if (typeof response.getPublicKeyAlgorithm === 'function') {
- responsePublicKeyAlgorithm = response.getPublicKeyAlgorithm();
+ try {
+ responsePublicKeyAlgorithm = response.getPublicKeyAlgorithm();
+ } catch (error) {
+ // pass
+ }
}
let responsePublicKey: string | undefined = undefined;
if (typeof response.getPublicKey === 'function') {
- const _publicKey = response.getPublicKey();
- if (_publicKey !== null) {
- responsePublicKey = bufferToBase64URLString(_publicKey);
+ try {
+ const _publicKey = response.getPublicKey();
+ if (_publicKey !== null) {
+ responsePublicKey = bufferToBase64URLString(_publicKey);
+ }
+ } catch (error) {
+ // pass
}
}
// L3 says this is required, but browser and webview support are still not guaranteed.
let responseAuthenticatorData: string | undefined;
if (typeof response.getAuthenticatorData === 'function') {
- responseAuthenticatorData = bufferToBase64URLString(
- response.getAuthenticatorData(),
- );
+ try {
+ responseAuthenticatorData = bufferToBase64URLString(
+ response.getAuthenticatorData(),
+ );
+ } catch (error) {
+ // pass
+ }
}
return {