mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 15:21:45 +01:00
21 lines
442 B
C#
21 lines
442 B
C#
namespace NFC.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
|
|
}
|
|
}
|