DSInternals/Src/DSInternals.Common/Data/Hello/KeyFlags.cs
2018-07-09 01:25:17 +02:00

27 lines
635 B
C#

using System;
namespace DSInternals.Common.Data
{
/// <summary>
/// Custom Key Flags
/// </summary>
/// <see>https://msdn.microsoft.com/en-us/library/mt220496.aspx</see>
[Flags]
public enum KeyFlags : byte
{
/// <summary>
/// No flags specified.
/// </summary>
None = 0,
/// <summary>
/// Reserved for future use.
/// </summary>
Attestation = 0x01,
/// <summary>
/// During creation of this key, the requesting client authenticated using only a single credential.
/// </summary>
MFANotUsed = 0x02,
}
}