tlsfuzzer / python-ecdsa

pure-python ECDSA signature/verification and ECDH key agreement
Other
914 stars 315 forks source link

"bin()" breaks py2.5 compatibility #11

Closed warner closed 11 years ago

warner commented 11 years ago

Looks like we missed a py2.5 compatibility issue with the recent deterministic-signature PR. @slush0, do you know of any simple py2.5-compatible replacement for bin() as used in rfc6979.bit_length()?

warner commented 11 years ago

Ah, nevermind, I found a replacement. Added in 1ccd206.

warner commented 11 years ago

Yup, that fixed it.