[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-38]

fix util docs a bit
This commit is contained in:
Robey Pointer 2005-07-14 02:36:30 +00:00
parent b5f0b3c786
commit 4c22409524
1 changed files with 4 additions and 4 deletions

View File

@ -175,9 +175,9 @@ def generate_key_bytes(hashclass, salt, key, nbytes):
def load_host_keys(filename): def load_host_keys(filename):
""" """
Read a file of known SSH host keys, in the format used by openssh, and Read a file of known SSH host keys, in the format used by openssh, and
return a compound dict of C{hostname -> keytype ->} L{PKey}. The hostname return a compound dict of C{hostname -> keytype ->} L{PKey <paramiko.pkey.PKey>}.
may be an IP address or DNS name. The keytype will be either C{"ssh-rsa"} The hostname may be an IP address or DNS name. The keytype will be either
or C{"ssh-dss"}. C{"ssh-rsa"} or C{"ssh-dss"}.
This type of file unfortunately doesn't exist on Windows, but on posix, This type of file unfortunately doesn't exist on Windows, but on posix,
it will usually be stored in C{os.path.expanduser("~/.ssh/known_hosts")}. it will usually be stored in C{os.path.expanduser("~/.ssh/known_hosts")}.
@ -185,7 +185,7 @@ def load_host_keys(filename):
@param filename: name of the file to read host keys from @param filename: name of the file to read host keys from
@type filename: str @type filename: str
@return: dict of host keys, indexed by hostname and then keytype @return: dict of host keys, indexed by hostname and then keytype
@rtype: dict(hostname, dict(keytype, L{PKey})) @rtype: dict(hostname, dict(keytype, L{PKey <paramiko.pkey.PKey>}))
""" """
import base64 import base64
from rsakey import RSAKey from rsakey import RSAKey