|
1 | 1 | from .keys import SigningKey, VerifyingKey, BadSignatureError, BadDigestError,\
|
2 | 2 | MalformedPointError
|
3 |
| -from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1 |
| 3 | +from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p,\ |
| 4 | + SECP256k1, BRAINPOOLP160r1, BRAINPOOLP192r1, BRAINPOOLP224r1,\ |
| 5 | + BRAINPOOLP256r1, BRAINPOOLP320r1, BRAINPOOLP384r1, BRAINPOOLP512r1 |
4 | 6 | from .der import UnexpectedDER
|
5 | 7 |
|
6 | 8 | # This code comes from http://github.com/warner/python-ecdsa
|
|
13 | 15 |
|
14 | 16 | _hush_pyflakes = [SigningKey, VerifyingKey, BadSignatureError, BadDigestError,
|
15 | 17 | MalformedPointError, UnexpectedDER,
|
16 |
| - NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1] |
| 18 | + NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1, |
| 19 | + BRAINPOOLP160r1, BRAINPOOLP192r1, BRAINPOOLP224r1, |
| 20 | + BRAINPOOLP256r1, BRAINPOOLP320r1, BRAINPOOLP384r1, |
| 21 | + BRAINPOOLP512r1] |
17 | 22 | del _hush_pyflakes
|
0 commit comments