Discuss this help topic in SecureBlackbox Forum
Defines in which order different authentication types should be used when connecting to SSH server.
Declaration
[C#]
public 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;
[PHP]
class TSBSSHAuthOrder extends TSBBaseEnum {
const aoDefault = 0;
const aoKbdIntLast = 1;
const aoCustom = 2;
}
[Java]
public enum TSBSSHAuthOrder { aoDefault, aoKbdIntLast, aoCustom }
Possible values
Declared in
.NET:
- Namespace: SBSSHCommon
- Assembly: SecureBlackbox.SSHCommon
VCL:Java:
- Package: SecureBlackbox.SSHCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum