Module tari_key_manager::mnemonic[][src]

Enums

MnemonicError

The Mnemonic system simplifies the encoding and decoding of a secret key into and from a Mnemonic word sequence It can autodetect the language of the Mnemonic word sequence

MnemonicLanguage

Traits

Mnemonic

Functions

from_bytes

Converts a vector of bytes to a sequence of mnemonic words using the specified language

from_secret_key

Generates a mnemonic sequence of words from the provided secret key

to_bytes

Generates a vector of bytes that represent the provided mnemonic sequence of words, the language of the mnemonic sequence is autodetected

to_bytes_with_language

Generates a vector of bytes that represent the provided mnemonic sequence of words using the specified language

to_secretkey

Generates a SecretKey that represents the provided mnemonic sequence of words. The language of the mnemonic sequence is autodetected.

to_secretkey_with_language

Generates a SecretKey that represent the provided mnemonic sequence of words using the specified language