Discuss this help topic in SecureBlackbox Forum
Defines in which order different authentication types should be used when connecting to SSH server.
Declaration
[C#/Java]
enum TSBSSHAuthOrder { aoDefault = 0, aoKbdIntLast = 1, aoCustom = 2 };
[VB.NET]
Enum TSBSSHAuthOrder
aoDefault = 0
aoKbdIntLast = 1
aoCustom = 2
End Enum
[Pascal]
TSBSSHAuthOrder = (aoDefault, aoKbdIntLast, aoCustom);
[C++]
typedef uint8_t TSBSSHAuthOrderRaw;
typedef enum { aoDefault = 0, aoKbdIntLast = 1, aoCustom = 2 } TSBSSHAuthOrder;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSHCommon
- Assembly: SecureBlackbox.SSHCommon
VCL:Java:
- Package: SecureBlackbox.SSHCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum