Skip to content

Commit 3a15318

Browse files
committed
make SECP256K1 visible in __init__.py, release 0.10
1 parent 892362d commit 3a15318

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Release 0.10 (23 Oct 2013)
2+
3+
Make the secp256k1 available in __init__.py too (thanks to Scott Bannert).
4+
15
* Release 0.9 (01 Oct 2013)
26

37
Add secp256k1 curve (thanks to Benjamin Dauvergne). Add deterministic (no

ecdsa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
__all__ = ["curves", "der", "ecdsa", "ellipticcurve", "keys", "numbertheory",
22
"test_pyecdsa", "util", "six"]
33
from .keys import SigningKey, VerifyingKey, BadSignatureError, BadDigestError
4-
from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p
4+
from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1
55

66
_hush_pyflakes = [SigningKey, VerifyingKey, BadSignatureError, BadDigestError,
7-
NIST192p, NIST224p, NIST256p, NIST384p, NIST521p]
7+
NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1]
88
del _hush_pyflakes
99

1010
# This code comes from http://github.com/warner/python-ecdsa

0 commit comments

Comments
 (0)