mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-04 13:38:28 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
from TrezorCrypto import Curve25519
|
|
from TrezorCrypto import Ed25519
|
|
from TrezorCrypto import Nist256p1
|
|
from TrezorCrypto import Secp256k1
|
|
|
|
curve25519 = Curve25519()
|
|
ed25519 = Ed25519()
|
|
nist256p1 = Nist256p1()
|
|
secp256k1 = Secp256k1()
|