Discuss this help topic in SecureBlackbox Forum
Specifies the algorithm for data encryption
Declaration
[C#]
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 Short
Const xem3DES As Short = 0
Const xemAES As Short = 1
Const xemCamellia As Short = 2
Const xemDES As Short = 3
Const xemRC4 As Short = 4
Const xemSEED As Short = 5
Const xemAES_GCM As Short = 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;
[PHP]
class TElXMLEncryptionMethod extends TSBBaseEnum {
const xem3DES = 0;
const xemAES = 1;
const xemCamellia = 2;
const xemDES = 3;
const xemRC4 = 4;
const xemSEED = 5;
const xemAES_GCM = 6;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum