Struct thrussh::Preferred [] [src]

pub struct Preferred {
    pub kex: &'static [Name],
    pub key: &'static [Name],
    pub cipher: &'static [Name],
    pub mac: &'static [&'static str],
    pub compression: &'static [&'static str],
}

Lists of preferred algorithms. This is normally hard-coded into implementations.

Fields

Preferred key exchange algorithms.

Preferred public key algorithms.

Preferred symmetric ciphers.

Preferred MAC algorithms.

Preferred compression algorithms.

Trait Implementations

impl Debug for Preferred
[src]

Formats the value using the given formatter.

impl Default for Preferred
[src]

Returns the "default value" for a type. Read more