WEBAUTHN_HMAC_SECRET_SALT structure (webauthn.h)

Contains the SALT values for the Hmac-Secret.

Syntax

typedef struct _WEBAUTHN_HMAC_SECRET_SALT {
  DWORD cbFirst;
  PBYTE pbFirst;
  DWORD cbSecond;
  PBYTE pbSecond;
} WEBAUTHN_HMAC_SECRET_SALT, *PWEBAUTHN_HMAC_SECRET_SALT;

Members

cbFirst

The size of pbFirst.

pbFirst

The first SALT value.

cbSecond

THe size of pbSecond.

pbSecond

The second SALT value.

Remarks

SALT values, by default, are converted into RAW Hmac-Secret values as per PRF extension.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT

WEBAUTHN_HMAC_SECRET_SALT_VALUES