diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-18 17:50:35 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-18 17:50:35 -0700 |
commit | 9cfb9d215a7903ec4eacde8704f7adf92b4afe6b (patch) | |
tree | 926013222977510fd1f6b24d84cb5ee91ed8f2c2 | |
parent | 780d18970316ef6ec105c9eb57a6351b30edbb48 (diff) |
Missed some old spots re: ECDSA docs still being epydoc
-rw-r--r-- | paramiko/ecdsakey.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/paramiko/ecdsakey.py b/paramiko/ecdsakey.py index e869ee61..a7f3c5ed 100644 --- a/paramiko/ecdsakey.py +++ b/paramiko/ecdsakey.py @@ -17,7 +17,7 @@ # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. """ -L{ECDSAKey} +ECDSA keys """ import binascii @@ -131,13 +131,10 @@ class ECDSAKey (PKey): Generate a new private RSA key. This factory function can be used to generate a new host key or authentication key. - @param bits: number of bits the generated key should be. - @type bits: int - @param progress_func: an optional function to call at key points in - key generation (used by C{pyCrypto.PublicKey}). - @type progress_func: function - @return: new private key - @rtype: L{RSAKey} + :param function progress_func: + an optional function to call at key points in key generation (used + by ``pyCrypto.PublicKey``). + :returns: A new private key (`.RSAKey`) object """ signing_key = SigningKey.generate(curve) key = ECDSAKey(vals=(signing_key, signing_key.get_verifying_key())) |