Ed25519MoneroPublicKey class

A class representing an Ed25519 Monero-compatible public key that implements the IPublicKey interface.

Implemented types

Constructors

Ed25519MoneroPublicKey.fromBytes(List<int> keyBytes)
Factory method for creating an Ed25519MoneroPublicKey from a byte array.
factory
Ed25519MoneroPublicKey.fromPoint(EDPoint point)
Factory method for creating an Ed25519MoneroPublicKey from an EDPoint.
factory

Properties

compressed List<int>
public key compressed bytes
no setteroverride
curve EllipticCurveTypes
curve type
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
length int
public key compressed bytes length
no setteroverride
point EDPoint
accsess to public key point
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
uncompressed List<int>
public key uncompressed bytes
no setteroverride
uncompressedLength int
public key uncompressed bytes length
no setteroverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toHex() String
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

isValidBytes(List<int> keyBytes) bool
check if bytes is valid for this key
override