Bip38NoEcDecrypter class

Helper class for decrypting BIP38-encrypted Bitcoin private keys without ECDSA.

This class provides methods for decrypting BIP38-encrypted Bitcoin private keys without using the Elliptic Curve Digital Signature Algorithm (ECDSA). It includes a decrypt method for decrypting the private key and a _decryptAndGetPrivKey method for the core decryption process.

Constructors

Bip38NoEcDecrypter()

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

decrypt(String privKeyEnc, String passphrase) Tuple<List<int>, PubKeyModes>
Decrypt a BIP38-encrypted Bitcoin private key without using ECDSA.