Discuss this help topic in SecureBlackbox Forum

TSBEncryptionOption

Declared in     


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


This topis is under development…

Declaration

[C#/Java]
    TSBEncryptionOption = short;
        const short eoIgnoreSupportedWin32Algorithms = 1;
        const short eoNoOuterContentInfo = 2;

[VB.NET]
    TSBEncryptionOption As SmallInt
        Const eoIgnoreSupportedWin32Algorithms As SmallInt = 1
        Const eoNoOuterContentInfo As SmallInt = 2

[Pascal]
    TSBEncryptionOption = (eoIgnoreSupportedWin32Algorithms, eoNoOuterContentInfo);

[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;

Description

Possible values:

Declared in

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

Discuss this help topic in SecureBlackbox Forum