borepin/NFC/Mifare DESFire/FileCommunication.cs
2020-09-15 15:27:01 +02:00

21 lines
429 B
C#

namespace NFC.Mifare_DESFire
{
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
}
}