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/apps/monero/xmr/serialize_messages/tx_ct_key.py

13 lines
251 B

from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .. import crypto
class CtKey:
__slots__ = ("dest", "mask")
def __init__(self, dest: crypto.Scalar, mask: crypto.Scalar) -> None:
self.dest = dest
self.mask = mask