diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:16:23 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:16:23 -0700 |
commit | eef3b984afd68d96e5f7b491f580baf2865f564f (patch) | |
tree | aaa6f2d4428a643c149c6c202d215c9f692f9ae6 /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | 387a51d950114ca93c1965b7713299ddb32889fa (diff) |
Export named verifySignature()
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 8f59a75..e3dc770 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -8,7 +8,7 @@ import { import { decodeClientDataJSON } from '../helpers/decodeClientDataJSON'; import { toHash } from '../helpers/toHash'; import { convertPublicKeyToPEM } from '../helpers/convertPublicKeyToPEM'; -import verifySignature from '../helpers/verifySignature'; +import { verifySignature } from '../helpers/verifySignature'; import { parseAuthenticatorData } from '../helpers/parseAuthenticatorData'; import { isBase64URLString } from '../helpers/isBase64URLString'; import { parseBackupFlags } from '../helpers/parseBackupFlags'; |