Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.87 KB

DSInternals.Win32.WebAuthn.HMACGetSecretInput.md

File metadata and controls

54 lines (35 loc) · 1.87 KB

Class HMACGetSecretInput

Namespace: DSInternals.Win32.WebAuthn
Assembly: DSInternals.Win32.WebAuthn.dll

The inputs to the hmac secret if it was created during registration.

public class HMACGetSecretInput

Inheritance

objectHMACGetSecretInput

Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

Properties

Salt1

32-byte random data.

[JsonPropertyName("salt1")]
public byte[] Salt1 { get; set; }

Property Value

byte[]

Salt2

Optional additional 32-byte random data. Used when the platform wants to roll over the symmetric secret in one operation.

[JsonPropertyName("salt2")]
public byte[] Salt2 { get; set; }

Property Value

byte[]