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 and s components.
ECDSASignature.fromBytes(List<int> bytes, ProjectiveECCPoint generator)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
r BigInt
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
s BigInt
final

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