twisted.conch.client.knownhosts.PlainEntry(_BaseEntry)
class documentationtwisted.conch.client.knownhosts
View Source
(View In Hierarchy)
Implements interfaces: twisted.conch.interfaces.IKnownHostEntry
A PlainEntry
is a representation of a plain-text entry in a known_hosts file.
Method | __init__ | Undocumented |
Class Method | fromString | Parse a plain-text entry in a known_hosts file, and return a
corresponding PlainEntry . |
Method | matchesHost | Check to see if this entry matches a given hostname. |
Method | toString | Implement IKnownHostEntry.toString
by recording the comma-separated hostnames, key type, and base-64 encoded
key. |
Instance Variable | _hostnames | the list of all host-names associated with this entry. (type: list
of bytes ) |
Inherited from _BaseEntry:
Instance Variable | keyType | The type of the key; either ssh-dss or ssh-rsa. (type: bytes ) |
Instance Variable | publicKey | The server public key indicated by this line. (type: twisted.conch.ssh.keys.Key ) |
Instance Variable | comment | Trailing garbage after the key line. (type: bytes ) |
Method | matchesKey | Check to see if this entry matches a given key object. |
Parse a plain-text entry in a known_hosts file, and return a
corresponding PlainEntry
.
Parameters | string | a space-separated string formatted like "hostname key-type
base64-key-data comment". (type: bytes ) |
Returns | an IKnownHostEntry representing the hostname and key in the input line. (type: PlainEntry ) | |
Raises | DecodeError | if the key is not valid encoded as valid base64. |
InvalidEntry | if the entry does not have the right number of elements and is therefore invalid. | |
BadKeyError | if the key, once decoded from base64, is not actually an SSH key. |
Implement IKnownHostEntry.toString
by recording the comma-separated hostnames, key type, and base-64 encoded
key.
Returns | The string representation of this entry, with unhashed hostname
information. (type: bytes ) |