t.c.c.k.PlainEntry(_BaseEntry) : class documentation

Part of twisted.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 str)

Inherited from _BaseEntry:

Instance Variable keyType The type of the key; either ssh-dss or ssh-rsa. (type: str)
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: str)
Method matchesKey Check to see if this entry matches a given key object.
_hostnames =
the list of all host-names associated with this entry. (type: list of str)
def __init__(self, hostnames, keyType, publicKey, comment): (source)
Undocumented
@classmethod
def fromString(cls, string): (source)
Parse a plain-text entry in a known_hosts file, and return a corresponding PlainEntry.
Parametersstringa space-separated string formatted like "hostname key-type base64-key-data comment". (type: str)
Returnsan IKnownHostEntry representing the hostname and key in the input line. (type: PlainEntry)
RaisesDecodeErrorif the key is not valid encoded as valid base64.
InvalidEntryif the entry does not have the right number of elements and is therefore invalid.
BadKeyErrorif the key, once decoded from base64, is not actually an SSH key.
def matchesHost(self, hostname): (source)
Check to see if this entry matches a given hostname.
ParametershostnameA hostname or IP address literal to check against this entry. (type: str)
ReturnsTrue if this entry is for the given hostname or IP address, False otherwise. (type: bool)
def toString(self): (source)
Implement IKnownHostEntry.toString by recording the comma-separated hostnames, key type, and base-64 encoded key.
ReturnsThe string representation of this entry, with unhashed hostname information. (type: bytes)
API Documentation for Twisted, generated by pydoctor at 2013-11-08 22:07:30.