ECDSASignature class
Represents an ECDSA (Elliptic Curve Digital Signature Algorithm) signature
containing r
and s
components.
Constructors
- ECDSASignature(BigInt r, BigInt s)
-
Creates an ECDSA signature with
r
ands
components. -
ECDSASignature.fromBytes(List<
int> bytes, ProjectiveECCPoint generator) -
factory
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
recoverPublicKey(
List< int> hash, ProjectiveECCPoint generator, int recId) → ECDSAPublicKey? -
recoverPublicKeys(
List< int> hash, ProjectiveECCPoint generator) → List<ECDSAPublicKey> - Recovers public keys from the ECDSA signature and a hash of the message.
-
toBytes(
int baselen) → List< int> -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited