mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 23:31:48 +01:00
14 lines
213 B
C#
14 lines
213 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NFC.Mifare_DESFire
|
|
{
|
|
enum CryptoOperations : byte
|
|
{
|
|
TDES = 0x00,
|
|
TKTDES = 0x40,
|
|
AES = 0x80,
|
|
}
|
|
}
|