Discuss this help topic in SecureBlackbox Forum

TElXMLKeyWrapMethod

Declared in     See also     


Filter: C#/Java  VB.NET  Pascal  C++  


Specifies the algorithm for key encryption

Declaration

[C#/Java]
    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 SmallInt
        Const xwm3DES As SmallInt = 0
        Const xwmAES128 As SmallInt = 1
        Const xwmAES192 As SmallInt = 2
        Const xwmAES256 As SmallInt = 3
        Const xwmCamellia128 As SmallInt = 4
        Const xwmCamellia192 As SmallInt = 5
        Const xwmCamellia256 As SmallInt = 6
        Const xwmSEED As SmallInt = 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;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBXMLSec
  • Assembly: SecureBlackbox.XML
VCL:
  • Unit: SBXMLSec
Java:
  • Package: SecureBlackbox.XML.jar
C++:
  • sbxmlsec.h

Discuss this help topic in SecureBlackbox Forum