WEBAUTHN_CREDENTIAL structure (webauthn.h)

Contains information about a credential.

Syntax

typedef struct _WEBAUTHN_CREDENTIAL {
  DWORD   dwVersion;
  DWORD   cbId;
  PBYTE   pbId;
  LPCWSTR 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 of pbId.

pbId

Unique ID for this particular credential.

pwszCredentialType

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

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_CREDENTIALS