[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-144]
fix docs clean up some of the docs.
This commit is contained in:
parent
0d10322783
commit
f7b0a62e4b
1
README
1
README
|
@ -222,3 +222,4 @@ v0.9 FEAROW
|
||||||
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
|
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
|
||||||
* server mode needs better documentation
|
* server mode needs better documentation
|
||||||
* add method to block until a channel's "exit-status" is set
|
* add method to block until a channel's "exit-status" is set
|
||||||
|
* the error message from this is confusing as hell: DSSKey()
|
||||||
|
|
|
@ -169,7 +169,7 @@ class PKey (object):
|
||||||
@param msg: an SSH signature message
|
@param msg: an SSH signature message
|
||||||
@type msg: L{Message}
|
@type msg: L{Message}
|
||||||
@return: C{True} if the signature verifies correctly; C{False}
|
@return: C{True} if the signature verifies correctly; C{False}
|
||||||
otherwise.
|
otherwise.
|
||||||
@rtype: boolean
|
@rtype: boolean
|
||||||
"""
|
"""
|
||||||
return False
|
return False
|
||||||
|
@ -186,14 +186,14 @@ class PKey (object):
|
||||||
@param filename: name of the file to read.
|
@param filename: name of the file to read.
|
||||||
@type filename: str
|
@type filename: str
|
||||||
@param password: an optional password to use to decrypt the key file,
|
@param password: an optional password to use to decrypt the key file,
|
||||||
if it's encrypted
|
if it's encrypted
|
||||||
@type password: str
|
@type password: str
|
||||||
@return: a new key object based on the given private key.
|
@return: a new key object based on the given private key.
|
||||||
@rtype: L{PKey}
|
@rtype: L{PKey}
|
||||||
|
|
||||||
@raise IOError: if there was an error reading the file.
|
@raise IOError: if there was an error reading the file.
|
||||||
@raise PasswordRequiredException: if the private key file is
|
@raise PasswordRequiredException: if the private key file is
|
||||||
encrypted, and C{password} is C{None}.
|
encrypted, and C{password} is C{None}.
|
||||||
@raise SSHException: if the key file is invalid.
|
@raise SSHException: if the key file is invalid.
|
||||||
|
|
||||||
@since: fearow
|
@since: fearow
|
||||||
|
|
|
@ -148,7 +148,7 @@ class SFTPAttributes (object):
|
||||||
if hasattr(self, 'st_uid') or hasattr(self, 'st_gid'):
|
if hasattr(self, 'st_uid') or hasattr(self, 'st_gid'):
|
||||||
out += 'uid=%d gid=%d ' % (getattr(self, 'st_uid', 0), getattr(self, 'st_gid', 0))
|
out += 'uid=%d gid=%d ' % (getattr(self, 'st_uid', 0), getattr(self, 'st_gid', 0))
|
||||||
if hasattr(self, 'st_mode'):
|
if hasattr(self, 'st_mode'):
|
||||||
out += 'mode=%d ' % self.st_mode
|
out += 'mode=' + oct(self.st_mode)
|
||||||
if hasattr(self, 'st_atime') or hasattr(self, 'st_mtime'):
|
if hasattr(self, 'st_atime') or hasattr(self, 'st_mtime'):
|
||||||
out += 'atime=%d mtime=%d ' % (getattr(self, 'st_atime', 0),
|
out += 'atime=%d mtime=%d ' % (getattr(self, 'st_atime', 0),
|
||||||
getattr(self, 'st_mtime', 0))
|
getattr(self, 'st_mtime', 0))
|
||||||
|
|
Loading…
Reference in New Issue