Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WEBAUTHN_HMAC_SECRET_SALT_VALUES structure (webauthn.h)

Contains HMAC secret salt values, including a global salt and optional per-credential salts for use with the PRF extension.

Syntax

typedef struct _WEBAUTHN_HMAC_SECRET_SALT_VALUES {
 PWEBAUTHN_HMAC_SECRET_SALT pGlobalHmacSalt;
 DWORD cCredWithHmacSecretSaltList;
 PWEBAUTHN_CRED_WITH_HMAC_SECRET_SALT pCredWithHmacSecretSaltList;
} WEBAUTHN_HMAC_SECRET_SALT_VALUES, *PWEBAUTHN_HMAC_SECRET_SALT_VALUES;

Members

pGlobalHmacSalt

A pointer to a WEBAUTHN_HMAC_SECRET_SALT structure that contains the global HMAC salt applied to all credentials.

cCredWithHmacSecretSaltList

The number of elements in the pCredWithHmacSecretSaltList array.

pCredWithHmacSecretSaltList

A pointer to an array of WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT structures that contain per-credential salt values.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_HMAC_SECRET_SALT


Feedback

Was this page helpful?

Additional resources