mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2024-12-13 09:57:29 +00:00
ce6abc1980
Domain backup keys are now exported as PFX, CER and PVK, Minor bugfixes
16 lines
276 B
C#
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
|
|
}
|
|
}
|