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

8 lines
172 B
Python
Raw Normal View History

2016-04-27 00:36:59 +00:00
from TrezorCrypto import Ed25519
from TrezorCrypto import Nist256p1
from TrezorCrypto import Secp256k1
2016-04-27 00:36:59 +00:00
ed25519 = Ed25519()
nist256p1 = Nist256p1()
secp256k1 = Secp256k1()