diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:13:53 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:13:53 -0700 |
commit | 546af2e311933533bd89bb955e43dcfa226bfc54 (patch) | |
tree | c9c84173d94122c9fc9f4b7a76040164fa020d91 /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | 6b3859b5e3323f87b462bb6229451aa6e897295a (diff) |
Export named decodeClientDataJSON()
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 d861f71..6161f92 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -5,7 +5,7 @@ import { CredentialDeviceType, } from '@simplewebauthn/typescript-types'; -import decodeClientDataJSON from '../helpers/decodeClientDataJSON'; +import { decodeClientDataJSON } from '../helpers/decodeClientDataJSON'; import toHash from '../helpers/toHash'; import { convertPublicKeyToPEM } from '../helpers/convertPublicKeyToPEM'; import verifySignature from '../helpers/verifySignature'; |