Ed25519Blake2bPublicKey class

Represents an Ed25519 public key with Blake2b hashing, implementing the IPublicKey interface.

Implemented types

Constructors

Ed25519Blake2bPublicKey.fromBytes(List<int> keyBytes)
Factory constructor to create an Ed25519Blake2bPublicKey from raw key bytes.
factory

Properties

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

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toHex({bool withPrefix = true, bool lowerCase = true, String? prefix = ""}) String
override
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

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