Edit

WEBAUTHN_CREDENTIAL structure (webauthn.h)

Contains information about a credential.

Syntax

typedef struct _WEBAUTHN_CREDENTIAL {
  DWORD  dwVersion;
  DWORD  cbId;
  PBYTE  pbId;
  PCWSTR pwszCredentialType;
} WEBAUTHN_CREDENTIAL, *PWEBAUTHN_CREDENTIAL;

Members

dwVersion

Version of this structure, to allow for modifications in the future. This field is required and should be set to CURRENT_VERSION.

cbId

The size, in bytes, of the credential ID pointed to by pbId.

pbId

A pointer to the unique identifier for this credential.

pwszCredentialType

Well-known credential type specifying the type of this particular credential.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_CREDENTIALS