Unit
type
TCREncryptionAlgorithm = (eaTripleDES, eaBlowfish, eaAES128, eaAES192, eaAES256, eaCast128, eaRC4);
Description
The TCREncryptionAlgorithm enumeration specifies the algorithm of data encryption.
| Value | Meaning |
| eaAES128 | The AES encryption algorithm with key size of 128 bits is used. |
| eaAES192 | The AES encryption algorithm with key size of 192 bits is used. |
| eaAES256 | The AES encryption algorithm with key size of 256 bits is used. |
| eaBlowfish | The Blowfish encryption algorithm is used. |
| eaCast128 | The CAST-128 encryption algorithm with key size of 128 bits is used. |
| eaRC4 | The RC4 encryption algorithm is used. |
| eaTripleDES | The Triple DES encryption algorithm is used. |
See also