BitcoinKeySigner class
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
signBip340({required List<int> digest, List<int>? tapTweakHash, List<int>? aux})
→ List<int>
-
Signs a given digest using the BIP-340 (Schnorr) signature scheme.
-
signBip340Const({required List<int> digest, List<int>? tapTweakHash, List<int>? aux})
→ List<int>
-
-
signECDSADer(List<int> digest, {})
→ List<int>
-
Signs the given transaction digest using ECDSA (DER-encoded).
-
signECDSADerConst(List<int> digest, {})
→ List<int>
-
-
signMessage({required List<int> message, bool hashMessage = true, String messagePrefix = BitcoinSignerUtils.signMessagePrefix, })
→ List<int>
-
Signs a message using Bitcoin's message signing format.
-
signMessageConst({required List<int> message, bool hashMessage = true, String messagePrefix = BitcoinSignerUtils.signMessagePrefix, Secp256k1ECmultGenContext? context})
→ List<int>
-
-
signSchnorr(List<int> digest, {})
→ List<int>
-
Signs the given transaction digest using Schnorr signature (old style).
-
signSchnorrConst(List<int> digest, {Secp256k1ECmultGenContext? context})
→ List<int>
-
-
toString()
→ String
-
A string representation of this object.
inherited