Class AMNetSshAlgorithms.HostKeyAlgorithms
Host key generation algorithm names.
Inherited Members
Namespace: ApacheMinaSSHD.NET.Wrapper
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public static class AMNetSshAlgorithms.HostKeyAlgorithms
Fields
| Edit this page View SourceDsa
Legacy DSA host key generation. Prefer RSA, ECDSA, or Ed25519 for new deployments.
Declaration
public const string Dsa = "DSA"
Field Value
| Type | Description |
|---|---|
| string |
Ecdsa
ECDSA host key generation, described by RFC 5656.
Declaration
public const string Ecdsa = "EC"
Field Value
| Type | Description |
|---|---|
| string |
Ed25519
Ed25519 host key generation when supported by the runtime, described by RFC 8709.
Declaration
public const string Ed25519 = "EdDSA"
Field Value
| Type | Description |
|---|---|
| string |
Rsa
RSA host key generation. Prefer RSA SHA-2 signatures from RFC 8332.
Declaration
public const string Rsa = "RSA"
Field Value
| Type | Description |
|---|---|
| string |