DSInternals/Src/DSInternals.Common/Data/DPAPI/RoamedCredentialFlags.cs
Michael Grafnetter ce6abc1980 Added support for roamed credentials,
Domain backup keys are now exported as PFX, CER and PVK,
Minor bugfixes
2017-03-25 18:25:22 +01:00

16 lines
276 B
C#

namespace DSInternals.Common.Data
{
using System;
[Flags]
public enum RoamedCredentialFlags : short
{
Tombstone = 1,
Unreadable = 2,
Unwritable = 4,
Unroamable = 8,
KnownType = 16,
EncryptionKey = 32
}
}