From ee263e3766f337f141e1a8cd18c47fd9094ac86b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 30 Jan 2015 07:16:35 -0500 Subject: [PATCH] Fixed a docstring that got out of sync with the signature. --- ecdsa/rfc6979.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecdsa/rfc6979.py b/ecdsa/rfc6979.py index 6ea0f53c..6190ebd4 100644 --- a/ecdsa/rfc6979.py +++ b/ecdsa/rfc6979.py @@ -53,7 +53,7 @@ def bits2octets(data, order): # https://tools.ietf.org/html/rfc6979#section-3.2 def generate_k(order, secexp, hash_func, data): ''' - generator - order of the DSA generator used in the signature + order - order of the DSA generator used in the signature secexp - secure exponent (private key) in numeric form hash_func - reference to the same hash function used for generating hash data - hash in binary form of the signing data