WebAuthnCredential
Public key credential information needed to verify authentication responses. Stores the credential's public key and metadata for server-side verification.
type WebAuthnCredential = {
id: Base64URLString;
publicKey: Uint8Array_;
counter: number;
transports?: AuthenticatorTransportFuture[];
};§Type
§
{
[src]id: Base64URLString;
publicKey: Uint8Array_;
counter: number;
transports?: AuthenticatorTransportFuture[];
}