Edit

WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT structure (webauthn.h)

Contains a credential ID paired with HMAC secret salt values for use with the PRF extension.

Syntax

typedef struct _WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT {
  DWORD                      cbCredID;
  PBYTE                      pbCredID;
  PWEBAUTHN_HMAC_SECRET_SALT pHmacSecretSalt;
} WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT, *PWEBAUTHN_CRED_WITH_HMAC_SECRET_SALT;

Members

cbCredID

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

pbCredID

A pointer to the credential ID.

pHmacSecretSalt

A pointer to a WEBAUTHN_HMAC_SECRET_SALT structure that contains the PRF salt values for this credential.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_CREDENTIAL

WEBAUTHN_HMAC_SECRET_SALT