namespace NFC.Cards.NXP_MIFARE_DESFire.Enums
{
public enum FileCommunication : byte
{
///
/// "Plain communication"
///
PLAIN = 0x00,
///
/// Plain communication secured by DES/3DES MACing
///
MAC = 0x01,
///
/// Fully DES/3DES enciphered communication
///
ENCRYPT = 0x03
}
}