Bip38EcKeysGenerator class
Helper class for generating BIP38-encrypted keys.
This class provides methods to generate intermediate passphrases and private keys using the BIP38 (Bitcoin Improvement Proposal 38) encryption scheme. It covers the creation of intermediate passphrases from regular passphrases, as well as the generation of BIP38-encrypted private keys.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
generateIntermediatePassphrase(
String passphrase, {int? lotNum, int? sequenceNum}) → String - Generate an intermediate passphrase from a regular passphrase.
-
generatePrivateKey(
String intPassphrase, PubKeyModes pubKeyMode) → String - Generate a BIP38-encrypted private key from an intermediate passphrase.