Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSSH1State { stNotEncrypted = 0, stEncrypted = 1 };
[VB.NET]
Enum TSSH1State
stNotEncrypted = 0
stEncrypted = 1
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSSH1StateRaw;
typedef enum { stNotEncrypted = 0, stEncrypted = 1 } TSSH1State;
[PHP]
class TSSH1State extends TSBBaseEnum {
const stNotEncrypted = 0;
const stEncrypted = 1;
}
[Java]
public enum TSSH1State { stNotEncrypted, stEncrypted }
Possible values
Declared in
.NET:
- Namespace: SBSSHCommon
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum