interface WebAuthnPCDClaim {
    challenge: string;
    credentialDetails: {
        counter: number;
        credentialID: string;
        credentialPublicKey: string;
        transports?: AuthenticatorTransportFuture[];
    };
    origin: string | string[];
    rpID: string | string[];
}

Properties

challenge: string

The challenge that is claimed to be signed by the credential.

credentialDetails: {
    counter: number;
    credentialID: string;
    credentialPublicKey: string;
    transports?: AuthenticatorTransportFuture[];
}

The WebAuthn credential information associated with this PCD. Storing bytes as Base64 encoded string to ensure serializability.

Type declaration

  • counter: number
  • credentialID: string
  • credentialPublicKey: string
  • Optional transports?: AuthenticatorTransportFuture[]
origin: string | string[]

The origin(s) of this WebAuthn credential, e.g. google.com.

rpID: string | string[]

The relying party ID(s) of this WebAuthn credential (https://www.w3.org/TR/webauthn-2/#relying-party-identifier).

Generated using TypeDoc