Bip38Decrypter class

Helper class for BIP38 decryption operations.

This class provides static methods for decrypting BIP38-encrypted Bitcoin private keys. It supports both EC and non-EC (NoEc) decryption methods.

Constructors

Bip38Decrypter()

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

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