namespace ProtonVPN.OperatingSystems.WebAuthn;
///
/// The response to a hmac get secret request.
///
/// https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-hmac-secret-extension
public class HMACGetSecretOutput
{
///
/// Output of HMAC-SHA-256(CredRandom, Salt1)
///
public byte[] Output1 { get; set; }
///
/// Output of HMAC-SHA-256(CredRandom, Salt2)
///
public byte[] Output2 { get; set; }
}