diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-16 13:40:20 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-16 13:40:20 -0800 |
commit | 61d97adc29f242ee86ea3f4f8a3c7c54ce760dc6 (patch) | |
tree | 55c8457eda3755b71cf4106aefd4d0ec707908fe /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | dc5c0307f34bb9136e0d708b1ae9f29ac194eb1d (diff) |
Rename credentialPublicKey argument
Diffstat (limited to 'packages/server/src/authentication/verifyAuthenticationResponse.ts')
-rw-r--r-- | packages/server/src/authentication/verifyAuthenticationResponse.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/verifyAuthenticationResponse.ts b/packages/server/src/authentication/verifyAuthenticationResponse.ts index e41636e..f47eaf1 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -206,7 +206,7 @@ export async function verifyAuthenticationResponse( verified: await verifySignature({ signature, signatureBase, - credentialPublicKey: authenticator.credentialPublicKey, + publicKey: authenticator.credentialPublicKey, }), authenticationInfo: { newCounter: counter, |