Discuss this help topic in SecureBlackbox Forum

TSBEncryptionOptions

Declared in     See also     


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


Declaration

[C#]
    TSBEncryptionOptions = int;
        const int eoIgnoreSupportedWin32Algorithms = 1;
        const int eoNoOuterContentInfo = 2;

[VB.NET]
    TSBEncryptionOptions As Integer
        Const eoIgnoreSupportedWin32Algorithms As Integer = 1
        Const eoNoOuterContentInfo As Integer = 2

[Pascal]
    under development

[C++]
    typedef uint8_t TSBEncryptionOptionRaw;
    typedef enum { eoIgnoreSupportedWin32Algorithms = 0, eoNoOuterContentInfo = 1 } TSBEncryptionOption;
    
    typedef uint32_t TSBEncryptionOptionsRaw;
    typedef enum { f_eoIgnoreSupportedWin32Algorithms = 1, f_eoNoOuterContentInfo = 2 } TSBEncryptionOptions;

[PHP]
    class TSBEncryptionOptions extends TSBBaseEnum {
        const eoIgnoreSupportedWin32Algorithms = 1;
        const eoNoOuterContentInfo = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBMessages
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBMessages
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbmessages.h

See also:     TSBEncryptionOption    

Discuss this help topic in SecureBlackbox Forum