borepin/NFC/NXP MIFARE DESFire/Enums/ChangeMasterKeySettings.cs

20 lines
525 B
C#
Raw Normal View History

2020-09-26 18:02:44 +02:00
namespace NFC.Mifare_DESFire.Enums
{
/// <summary>
/// codes whether a change of the application master key settings is allowed
/// </summary>
public enum ChangeMasterKeySettings : byte
{
/// <summary>
/// configuration not changeable anymore (frozen)
/// </summary>
FROZEN = 0x00,
/// <summary>
/// this configuration is changeable if authenticated with the application master key (default)
/// </summary>
WITHMASTERKEY = 0x08
}
}