Discuss this help topic in SecureBlackbox Forum
Specifies the algorithm for key encryption
Declaration
[C#]
TElXMLKeyWrapMethod = short;
const short xwm3DES = 0;
const short xwmAES128 = 1;
const short xwmAES192 = 2;
const short xwmAES256 = 3;
const short xwmCamellia128 = 4;
const short xwmCamellia192 = 5;
const short xwmCamellia256 = 6;
const short xwmSEED = 7;
[VB.NET]
TElXMLKeyWrapMethod As Short
Const xwm3DES As Short = 0
Const xwmAES128 As Short = 1
Const xwmAES192 As Short = 2
Const xwmAES256 As Short = 3
Const xwmCamellia128 As Short = 4
Const xwmCamellia192 As Short = 5
Const xwmCamellia256 As Short = 6
Const xwmSEED As Short = 7
[Pascal]
TElXMLKeyWrapMethod = (xwm3DES, xwmAES128, xwmAES192, xwmAES256, xwmCamellia128, xwmCamellia192, xwmCamellia256, xwmSEED);
[C++]
typedef uint8_t TElXMLKeyWrapMethodRaw;
typedef enum { xwm3DES = 0, xwmAES128 = 1, xwmAES192 = 2, xwmAES256 = 3, xwmCamellia128 = 4, xwmCamellia192 = 5, xwmCamellia256 = 6, xwmSEED = 7 } TElXMLKeyWrapMethod;
[PHP]
class TElXMLKeyWrapMethod extends TSBBaseEnum {
const xwm3DES = 0;
const xwmAES128 = 1;
const xwmAES192 = 2;
const xwmAES256 = 3;
const xwmCamellia128 = 4;
const xwmCamellia192 = 5;
const xwmCamellia256 = 6;
const xwmSEED = 7;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum