Class AMNetSshAlgorithms.Ciphers
SSH symmetric cipher algorithm names, including RFC-backed AES modes and OpenSSH extension names.
Inherited Members
Namespace: ApacheMinaSSHD.NET.Wrapper
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public static class AMNetSshAlgorithms.Ciphers
Fields
| Edit this page View SourceAes128Ctr
AES-128 CTR mode encryption for SSH, described by RFC 4344.
Declaration
public const string Aes128Ctr = "aes128-ctr"
Field Value
| Type | Description |
|---|---|
| string |
Aes128Gcm
AES-128 GCM authenticated encryption for SSH, described by RFC 5647.
Declaration
public const string Aes128Gcm = "aes128-gcm@openssh.com"
Field Value
| Type | Description |
|---|---|
| string |
Aes192Ctr
AES-192 CTR mode encryption for SSH, described by RFC 4344.
Declaration
public const string Aes192Ctr = "aes192-ctr"
Field Value
| Type | Description |
|---|---|
| string |
Aes256Ctr
AES-256 CTR mode encryption for SSH, described by RFC 4344.
Declaration
public const string Aes256Ctr = "aes256-ctr"
Field Value
| Type | Description |
|---|---|
| string |
Aes256Gcm
AES-256 GCM authenticated encryption for SSH, described by RFC 5647.
Declaration
public const string Aes256Gcm = "aes256-gcm@openssh.com"
Field Value
| Type | Description |
|---|---|
| string |
ChaCha20Poly1305
ChaCha20-Poly1305 authenticated encryption using the OpenSSH extension name.
Declaration
public const string ChaCha20Poly1305 = "chacha20-poly1305@openssh.com"
Field Value
| Type | Description |
|---|---|
| string |