mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
22 lines
720 B
C#
22 lines
720 B
C#
namespace NFC.Cards.NXP_MIFARE_DESFire.Enums
|
|
{
|
|
/// <summary>
|
|
/// hold the Access Rights for changing application keys (Change Key command)
|
|
/// </summary>
|
|
public enum ChangeApplicationKey : byte
|
|
{
|
|
/// <summary>
|
|
/// Application master key authentication is necessary to change any key (default)
|
|
/// </summary>
|
|
MASTERKEY = 0x00,
|
|
/// <summary>
|
|
/// Authentication with the key to be changed (same Key#) is necessary to change a key
|
|
/// </summary>
|
|
SAMEKEY = 0x0E,
|
|
/// <summary>
|
|
/// All keys (except application master key, see Bit 0) within this application are frozen
|
|
/// </summary>
|
|
ALLKEYS = 0x0F
|
|
}
|
|
}
|