Skip to content

Commit

Permalink
Merge pull request #110 from kcorlidy/master
Browse files Browse the repository at this point in the history
To fix issue #108
  • Loading branch information
tomato42 authored Jul 19, 2019
2 parents 480b5f7 + fbb3604 commit 72621b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build-requirements-3.3.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
python-coveralls
tox<3.0
pluggy<0.6
tox<3
wheel<0.30
virtualenv==15.2.0
2 changes: 1 addition & 1 deletion src/ecdsa/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def from_public_key_recovery(klass, signature, data, curve, hashfunc=sha1, sigde
# returns a list of verifying keys for this signature and message

digest = hashfunc(data).digest()
return klass.from_public_key_recovery_with_digest(signature, digest, curve, hashfunc=sha1, sigdecode=sigdecode_string)
return klass.from_public_key_recovery_with_digest(signature, digest, curve, hashfunc=sha1, sigdecode=sigdecode)

@classmethod
def from_public_key_recovery_with_digest(klass, signature, digest, curve, hashfunc=sha1, sigdecode=sigdecode_string):
Expand Down

0 comments on commit 72621b1

Please sign in to comment.