pub enum KnownHosts {
    NotFound,
    Unknown,
    Ok,
    Changed,
    Other,
}
Expand description

Indicates the state of known-host matching, an important set to detect and avoid MITM attacks.

Variants

NotFound

The known host file does not exist. The host is thus unknown. File will be created if host key is accepted.

Unknown

The server is unknown. User should confirm the public key hash is correct.

Ok

The server is known and has not changed.

Changed

The server key has changed. Either you are under attack or the administrator changed the key. You HAVE to warn the user about a possible attack.

Other

The server gave use a key of a type while we had an other type recorded. It is a possible attack.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.