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