1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-03 04:58:25 +00:00
trezor-firmware/src/trezor/crypto/curve.py

10 lines
234 B
Python
Raw Normal View History

2017-06-14 16:47:38 +00:00
from trezorcrypto import Curve25519
from trezorcrypto import Ed25519
from trezorcrypto import Nist256p1
from trezorcrypto import Secp256k1
2016-04-27 00:36:59 +00:00
curve25519 = Curve25519()
2016-04-27 00:36:59 +00:00
ed25519 = Ed25519()
nist256p1 = Nist256p1()
secp256k1 = Secp256k1()