Bip38NoEcEncrypter class

Helper class for encrypting Bitcoin private keys without using ECDSA.

This class provides a method for encrypting Bitcoin private keys using BIP38 encryption without the Elliptic Curve Digital Signature Algorithm (ECDSA). It takes a private key, passphrase, and public key mode as inputs and returns the BIP38-encrypted private key as a string.

Constructors

Bip38NoEcEncrypter()

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

encrypt(List<int> privKey, String passphrase, PubKeyModes pubKeyMode) String
Encrypt a Bitcoin private key without using ECDSA.