mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2024-12-14 18:37:22 +00:00
27 lines
635 B
C#
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,
|
|
}
|
|
} |