mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.4 KiB
1.4 KiB
Home > puppeteer > Protocol > WebAuthn > Credential
Protocol.WebAuthn.Credential interface
Signature:
export interface Credential
Properties
| Property | Type | Description |
|---|---|---|
| credentialId | string | |
| isResidentCredential | boolean | |
| privateKey | string | The ECDSA P-256 private key in PKCS#8 format. |
| rpId | string | Relying Party ID the credential is scoped to. Must be set when adding a credential. |
| signCount | integer | Signature counter. This is incremented by one for each successful assertion. See https://w3c.github.io/webauthn/#signature-counter |
| userHandle | string | An opaque byte sequence with a maximum size of 64 bytes mapping the credential to a specific user. |