TWTronMessageSigner class abstract

Tron message signing and verification.

Tron and some other wallets support a message signing & verification format, to create a proof (a signature) that someone has access to the private keys of a specific address.

Constructors

TWTronMessageSigner.new()

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

TWTronMessageSignerSignMessage(Pointer<Void> privateKey, Pointer<Utf8> message) Pointer<Utf8>
Sign a message.
TWTronMessageSignerVerifyMessage(Pointer<Void> pubKey, Pointer<Utf8> message, Pointer<Utf8> signature) bool
Verify signature for a message.