Discuss this help topic in SecureBlackbox Forum
Defines different security options.
Declaration
[C#/Java]
TSBFTPSSecurityOption = int;
const int fsoPlainLogin = 1;
const int fsoEncryption = 2;
const int fsoAuth = 4;
const int fsoClearControlChannel = 8;
const int fsoClearDataChannel = 16;
const int fsoEncryptedDataChannel = 32;
[VB.NET]
TSBFTPSSecurityOption As Integer
Const fsoPlainLogin As Integer = 1
Const fsoEncryption As Integer = 2
Const fsoAuth As Integer = 4
Const fsoClearControlChannel As Integer = 8
Const fsoClearDataChannel As Integer = 16
Const fsoEncryptedDataChannel As Integer = 32
[Pascal]
TSBFTPSSecurityOption = (fsoPlainLogin, fsoEncryption, fsoAuth, fsoClearControlChannel, fsoClearDataChannel, fsoEncryptedDataChannel);
[C++]
typedef uint8_t TSBFTPSSecurityOptionRaw;
typedef enum { fsoPlainLogin = 0, fsoEncryption = 1, fsoAuth = 2, fsoClearControlChannel = 3, fsoClearDataChannel = 4, fsoEncryptedDataChannel = 5 } TSBFTPSSecurityOption;
typedef uint32_t TSBFTPSSecurityOptionsRaw;
typedef enum { f_fsoPlainLogin = 1, f_fsoEncryption = 2, f_fsoAuth = 4, f_fsoClearControlChannel = 8, f_fsoClearDataChannel = 16, f_fsoEncryptedDataChannel = 32 } TSBFTPSSecurityOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBFTPSServer
- Assembly: SecureBlackbox.FTPS
VCL:Java:
- Package: SecureBlackbox.FTPS.jar
C++:
Discuss this help topic in SecureBlackbox Forum