namespace NFC.Mifare_DESFire.Enums
{
///
/// hold the Access Rights for changing application keys (Change Key command)
///
public enum ChangeApplicationKey : byte
{
///
/// Application master key authentication is necessary to change any key (default)
///
MASTERKEY = 0x00,
///
/// Authentication with the key to be changed (same Key#) is necessary to change a key
///
SAMEKEY = 0x0E,
///
/// All keys (except application master key, see Bit 0) within this application are frozen
///
ALLKEYS = 0x0F
}
}