Static member | Description |
Full Usage:
MnemonicExtensions.ChangePass(this, oldPass, newPass, ?lang)
Parameters: Returns: Result<Mnemonic, AezeedError>
|
|
Full Usage:
MnemonicExtensions.ToCipherSeed(this, password, lang)
Parameters: Returns: Result<CipherSeed, AezeedError>
|
|
Full Usage:
MnemonicExtensions.ToCipherSeed(this, ?password, ?lang)
Parameters: Returns: Result<CipherSeed, AezeedError>
|
|
Full Usage:
MnemonicExtensions.ToCipherSeed(this, ?password)
Parameters:
Mnemonic
?password : byte
Returns: Result<CipherSeed, AezeedError>
|
Attempts to map the mnemonic to the original cipher text byte slice. Then It will attempt to decrypt the ciphertext using aez with the passed passphrase, using the last 5 bytes of the ciphertext as a salt for the KDF.
|
Full Usage:
MnemonicExtensions.ToCipherSeed(this, ?password)
Parameters:
Mnemonic
?password : string
Returns: Result<CipherSeed, AezeedError>
|
Attempts to map the mnemonic to the original cipher text byte slice. Then It will attempt to decrypt the ciphertext using aez with the passed passphrase, using the last 5 bytes of the ciphertext as a salt for the KDF.
|