diff options
Diffstat (limited to 'packages/server/src')
-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; |