borepin/NFC/NXP MIFARE DESFire/Enums/ChangeMasterKey.cs
2020-10-05 18:39:45 +02:00

19 lines
529 B
C#

namespace NFC.Mifare_DESFire.Enums
{
/// <summary>
/// codes whether the application master key is changeable
/// </summary>
public enum ChangeMasterKey : byte
{
/// <summary>
/// Application master key is not changeable anymore (frozen)
/// </summary>
FROZEN = 0x00,
/// <summary>
/// Application master key is changeable (authentication with the current application master key necessary, default)
/// </summary>
CHANGEABLE = 0x01,
}
}