Class AMNetSshAlgorithms.HostKeys
SSH host key/signature algorithm names advertised to clients.
Inherited Members
Namespace: ApacheMinaSSHD.NET.Wrapper
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public static class AMNetSshAlgorithms.HostKeys
Fields
| Edit this page View SourceEcdsaNistp256
ECDSA NIST P-256 host key signature for SSH, described by RFC 5656.
Declaration
public const string EcdsaNistp256 = "ecdsa-sha2-nistp256"
Field Value
| Type | Description |
|---|---|
| string |
EcdsaNistp384
ECDSA NIST P-384 host key signature for SSH, described by RFC 5656.
Declaration
public const string EcdsaNistp384 = "ecdsa-sha2-nistp384"
Field Value
| Type | Description |
|---|---|
| string |
EcdsaNistp521
ECDSA NIST P-521 host key signature for SSH, described by RFC 5656.
Declaration
public const string EcdsaNistp521 = "ecdsa-sha2-nistp521"
Field Value
| Type | Description |
|---|---|
| string |
Ed25519
Ed25519 host key signature for SSH, described by RFC 8709.
Declaration
public const string Ed25519 = "ssh-ed25519"
Field Value
| Type | Description |
|---|---|
| string |
RsaSha256
RSA SHA-256 host key signature for SSH, described by RFC 8332.
Declaration
public const string RsaSha256 = "rsa-sha2-256"
Field Value
| Type | Description |
|---|---|
| string |
RsaSha512
RSA SHA-512 host key signature for SSH, described by RFC 8332.
Declaration
public const string RsaSha512 = "rsa-sha2-512"
Field Value
| Type | Description |
|---|---|
| string |
SshRsa
Legacy RSA SHA-1 host key signature from RFC 4253. Prefer RSA SHA-2 where clients support it.
Declaration
public const string SshRsa = "ssh-rsa"
Field Value
| Type | Description |
|---|---|
| string |