mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
19 lines
630 B
C#
19 lines
630 B
C#
namespace NFC.Cards.NXP_MIFARE_DESFire.Enums
|
|
{
|
|
/// <summary>
|
|
/// codes whether application master key authentication is needed before “Create File” / “Delete File”
|
|
/// </summary>
|
|
public enum CreateDeleteFile : byte
|
|
{
|
|
/// <summary>
|
|
/// “Create File”/ “Delete File”is permitted only with application master key authentication
|
|
/// </summary>
|
|
ONLYMASTERKEY = 0x00,
|
|
|
|
/// <summary>
|
|
/// “Create File”/ “Delete File”is permitted also without application master key authentication (default)
|
|
/// </summary>
|
|
NOKEY = 0x04,
|
|
}
|
|
}
|