mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Passkeys: Add publicKey to response (#2782)
Passkeys: Add publicKey to response
This commit is contained in:
parent
43d0dc528f
commit
fdbd077852
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@
|
|||
attestationObject: kpxcBase64ToArrayBuffer(publicKey.response.attestationObject),
|
||||
clientDataJSON: kpxcBase64ToArrayBuffer(publicKey.response.clientDataJSON),
|
||||
getAuthenticatorData: () => kpxcBase64ToArrayBuffer(publicKey.response?.authenticatorData),
|
||||
getPublicKey: () => null,
|
||||
getPublicKey: () => publicKey.response?.publicKey ? publicKey.response?.publicKey : null,
|
||||
getPublicKeyAlgorithm: () => publicKey.response?.publicKeyAlgorithm,
|
||||
getTransports: () => [ 'internal' ]
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue