borepin/NFC/Mifare DESFire/CryptoOperations.cs

14 lines
213 B
C#
Raw Normal View History

2020-09-15 15:27:01 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace NFC.Mifare_DESFire
{
enum CryptoOperations : byte
{
TDES = 0x00,
TKTDES = 0x40,
AES = 0x80,
}
}