Discuss this help topic in SecureBlackbox Forum
This topis is under development…
Declaration
[C#]
TSBEncryptionOption = short;
const short eoIgnoreSupportedWin32Algorithms = 0;
const short eoNoOuterContentInfo = 1;
[VB.NET]
TSBEncryptionOption As Short
Const eoIgnoreSupportedWin32Algorithms As Short = 0
Const eoNoOuterContentInfo As Short = 1
[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;
[PHP]
class TSBEncryptionOption extends TSBBaseEnum {
const eoIgnoreSupportedWin32Algorithms = 0;
const eoNoOuterContentInfo = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBMessages
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum