You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/src/trezor/crypto/__init__.py

24 lines
416 B

from trezorcrypto import ( # noqa: F401
aes,
bip32,
bip39,
chacha20poly1305,
crc,
hmac,
pbkdf2,
random,
)
try:
from trezorcrypto import elligator2 # noqa: F401
except Exception:
pass
from trezor import utils
if not utils.BITCOIN_ONLY:
from trezorcrypto import cardano, monero, nem # noqa: F401
if utils.USE_OPTIGA:
from trezorcrypto import optiga # noqa: F401