Edit

WEBAUTHN_EXTENSION structure (webauthn.h)

Contains a single WebAuthn extension with its identifier and data.

Syntax

typedef struct _WEBAUTHN_EXTENSION {
  LPCWSTR pwszExtensionIdentifier;
  DWORD   cbExtension;
  PVOID   pvExtension;
} WEBAUTHN_EXTENSION, *PWEBAUTHN_EXTENSION;

Members

pwszExtensionIdentifier

A pointer to a null-terminated string that contains the extension identifier.

cbExtension

The size, in bytes, of the extension data pointed to by pvExtension.

pvExtension

A pointer to the CBOR-encoded extension data.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_EXTENSIONS