Discuss this help topic in SecureBlackbox Forum
Defines possible key formats for SSH.
Declaration
[C#/Java]
enum TSBSSHKeyFormat { kfOpenSSH = 0, kfIETF = 1, kfPuTTY = 2, kfX509 = 3, kfBinary = 4, kfSSH1 = 5, kfPGP = 6 };
[VB.NET]
Enum TSBSSHKeyFormat
kfOpenSSH = 0
kfIETF = 1
kfPuTTY = 2
kfX509 = 3
kfBinary = 4
kfSSH1 = 5
kfPGP = 6
End Enum
[Pascal]
TSBSSHKeyFormat = (kfOpenSSH, kfIETF, kfPuTTY, kfX509, kfBinary, kfSSH1, kfPGP);
[C++]
typedef uint8_t TSBSSHKeyFormatRaw;
typedef enum { kfOpenSSH = 0, kfIETF = 1, kfPuTTY = 2, kfX509 = 3, kfBinary = 4, kfSSH1 = 5, kfPGP = 6 } TSBSSHKeyFormat;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSHKeyStorage
- Assembly: SecureBlackbox.SSHCommon
VCL:Java:
- Package: SecureBlackbox.SSHCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum