Discuss this help topic in SecureBlackbox Forum
Specifies the algorithm for data encryption
Declaration
[C#/Java]
TElXMLEncryptionMethod = short;
const short xem3DES = 0;
const short xemAES = 1;
const short xemCamellia = 2;
const short xemDES = 3;
const short xemRC4 = 4;
const short xemSEED = 5;
const short xemAES_GCM = 6;
[VB.NET]
TElXMLEncryptionMethod As SmallInt
Const xem3DES As SmallInt = 0
Const xemAES As SmallInt = 1
Const xemCamellia As SmallInt = 2
Const xemDES As SmallInt = 3
Const xemRC4 As SmallInt = 4
Const xemSEED As SmallInt = 5
Const xemAES_GCM As SmallInt = 6
[Pascal]
TElXMLEncryptionMethod = (xem3DES, xemAES, xemCamellia, xemDES, xemRC4, xemSEED);
[C++]
typedef uint8_t TElXMLEncryptionMethodRaw;
typedef enum { xem3DES = 0, xemAES = 1, xemCamellia = 2, xemDES = 3, xemRC4 = 4, xemSEED = 5, xemAES_GCM = 6 } TElXMLEncryptionMethod;
Description
Possible values:
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum