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/pallas.py

15 lines
263 B

"""Curve for Zcash cryptography."""
from trezor import utils
if utils.ZCASH_SHIELDED:
from trezorpallas import ( # noqa: F401
Fp,
Point,
Scalar,
group_hash,
scalar_from_i64,
to_base,
to_scalar,
)