mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
21 lines
452 B
C#
21 lines
452 B
C#
namespace NFC.Cards.NXP_MIFARE_DESFire.Enums
|
|
{
|
|
public enum FileCommunication : byte
|
|
{
|
|
/// <summary>
|
|
/// "Plain communication"
|
|
/// </summary>
|
|
PLAIN = 0x00,
|
|
|
|
/// <summary>
|
|
/// Plain communication secured by DES/3DES MACing
|
|
/// </summary>
|
|
MAC = 0x01,
|
|
|
|
/// <summary>
|
|
/// Fully DES/3DES enciphered communication
|
|
/// </summary>
|
|
ENCRYPT = 0x03
|
|
}
|
|
}
|