diff options
author | Eiji Kitamura <agektmr@google.com> | 2022-07-22 22:18:27 +0900 |
---|---|---|
committer | Eiji Kitamura <agektmr@google.com> | 2022-07-22 22:18:27 +0900 |
commit | ca546ef7525bc8c75d23158c78ab98d7de98d0f8 (patch) | |
tree | 994d27aafbe84420ca71cf8a54c87d6394169bde /packages/server/src/helpers/decodeAuthenticatorExtensions.ts | |
parent | 452443b88a53fadd8a3e4a79db699c008cd9ce4b (diff) |
Rename
DevicePublicKeyJSON => DevicePublicKeyAuthenticatorOutput
Diffstat (limited to 'packages/server/src/helpers/decodeAuthenticatorExtensions.ts')
-rw-r--r-- | packages/server/src/helpers/decodeAuthenticatorExtensions.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts index f089954..b5da8fe 100644 --- a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts +++ b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts @@ -19,11 +19,11 @@ export default function decodeAuthenticatorExtensionData( } export type AuthenticationExtensionsAuthenticatorOutputs = { - devicePublicKey?: DevicePublicKeyJSON; + devicePublicKey?: DevicePublicKeyAuthenticatorOutput; uvm?: UvmJSON; } -export type DevicePublicKeyJSON = { +export type DevicePublicKeyAuthenticatorOutput = { dpk?: Buffer; scp?: Buffer; sig?: string; |