dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlConnectionStringBuilder Class / SshCipherList Property

In This Topic
SshCipherList Property
In This Topic
List of ciphers that client agrees to use.
Syntax
'Declaration
 
Public Property SshCipherList As String
 

Property Value

List of allowed ciphers separated by colons. The default value is empty string, which means that any cipher is allowed.
Remarks

The following ciphers are available for SSH connections:

  • 3DES
  • Blowfish
  • AES(128)

You can use ALL keyword to indicate whole set of ciphers. To exclude certain cipher from the set use "-" sign. For instance, value of CipherList property "ALL-Blowfish" means that any cipher but Blowfish can be used.

See Also