borepin/NFC/NXP MIFARE DESFire/Enums/FileCommunication.cs

21 lines
442 B
C#
Raw Normal View History

2020-09-26 18:02:44 +02:00
namespace NFC.Mifare_DESFire.Enums
2020-09-15 15:27:01 +02:00
{
2020-09-26 18:02:44 +02:00
public enum FileCommunication : byte
2020-09-15 15:27:01 +02:00
{
/// <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
}
}