BasicCard cryptographic algorithms for start encryption.

Namespace: BasicCard.BasicCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
[SerializableAttribute]
[CLSCompliantAttribute(true)]
public enum CryptAlgo
Visual Basic
<SerializableAttribute>
<CLSCompliantAttribute(true)>
Public Enumeration CryptAlgo
Visual C++
[SerializableAttribute]
[CLSCompliantAttribute(true)]
public enum class CryptAlgo
F#
[<SerializableAttribute>]
[<CLSCompliantAttribute(true)>]
type CryptAlgo

Members

Member nameValueDescription
None-1 No encryption
Auto0 Automatically select algorithm
Sglfsr17 SGLFSR
SglfsrCrc18 SGLFSR with CRC
Des33 DES
TripleDes34 Triple DES
DesCrc35 DES with CRC
TripleDesEde2Crc36 Triple DES-EDE2 (16 byte key) with CRC
TripleDesEde3Crc37 Triple DES-EDE2 (24 byte key) with CRC
Aes12849 AES with 128 bit key
Aes19250 AES with 192 bit key
Aes25651 AES with 256 bit key
EaxAes12865 EAX using AES with 128 bit key
EaxAes19266 EAX using AES with 192 bit key
EaxAes25667 EAX using AES with 256 bit key
OmacAes128129 OMAC using AES with 128 bit key
OmacAes192130 OMAC using AES with 192 bit key
OmacAes256131 OMAC using AES with 256 bit key

See Also