def get_slip39_iteration_exponent() -> Optional[int]: """ The device's actual SLIP-39 iteration exponent used in passphrase derivation. """ return common._get_uint8(_NAMESPACE, _SLIP39_ITERATION_EXPONENT)
def get_mnemonic_type() -> Optional[int]: return common._get_uint8(_NAMESPACE, _MNEMONIC_TYPE)
def get_iteration_exponent() -> Optional[int]: return common._get_uint8(_NAMESPACE, _SLIP39_ITERATION_EXPONENT)
def get_words_count() -> Optional[int]: return common._get_uint8(_NAMESPACE, _SLIP39_WORDS_COUNT)
def get_remaining() -> Optional[int]: return common._get_uint8(_NAMESPACE, _SLIP39_REMAINING)
def get_threshold() -> Optional[int]: return common._get_uint8(_NAMESPACE, _SLIP39_THRESHOLD)
def get_word_count() -> Optional[int]: return common._get_uint8(_NAMESPACE, _WORD_COUNT)