Skip to main content

Class: Ed25519PublicKey

An ed25519 public key.

BCS

The BCS serialized form for this type is defined by the following ABNF:

ed25519-public-key = 32OCTET

Extends

  • UniffiAbstractObject

Implements

Properties

[destructorGuardSymbol]

readonly [destructorGuardSymbol]: UniffiGcObject;

[pointerLiteralSymbol]

readonly [pointerLiteralSymbol]: bigint;

[uniffiTypeNameSymbol]

readonly [uniffiTypeNameSymbol]: "Ed25519PublicKey" = "Ed25519PublicKey";

Methods

deriveAddress()

deriveAddress(): AddressLike;

Derive an Address from this Public Key

An Address can be derived from an Ed25519PublicKey by hashing the bytes of the public key with no prefix flag.

hash(32-byte ed25519 public key)

Returns

AddressLike

Implementation of

Ed25519PublicKeyLike.deriveAddress


equals()

equals(other): boolean;

Parameters

other

Ed25519PublicKey

Returns

boolean


hashCode()

hashCode(): bigint;

Returns

bigint


scheme()

scheme(): SignatureScheme;

Returns the signature scheme for this public key.

Returns

SignatureScheme

Implementation of

Ed25519PublicKeyLike.scheme


toBytes()

toBytes(): ArrayBuffer;

Returns

ArrayBuffer

Implementation of

Ed25519PublicKeyLike.toBytes


toFlaggedBytes()

toFlaggedBytes(): ArrayBuffer;

Returns the bytes with signature scheme flag prepended.

Returns

ArrayBuffer

Implementation of

Ed25519PublicKeyLike.toFlaggedBytes


uniffiDestroy()

uniffiDestroy(): void;

Explicitly tell Rust to destroy the native peer that backs this object.

Once this method has been called, any following method calls will throw an error.

Can be called more than once.

Returns

void

Overrides

UniffiAbstractObject.uniffiDestroy

uniffiUse()

uniffiUse<T>(block): T;

A convenience method to use this object, then destroy it after its use.

Type Parameters

T

T

Parameters

block

(obj) => T

Returns

T

Inherited from

UniffiAbstractObject.uniffiUse

fromBytes()

static fromBytes(bytes): Ed25519PublicKeyLike;

Parameters

bytes

ArrayBuffer

Returns

Ed25519PublicKeyLike


fromStr()

static fromStr(s): Ed25519PublicKeyLike;

Parameters

s

string

Returns

Ed25519PublicKeyLike


instanceOf()

static instanceOf(obj_): obj_ is Ed25519PublicKey;

Parameters

obj_

any

Returns

obj_ is Ed25519PublicKey


random()

static random(): Ed25519PublicKeyLike;

Returns

Ed25519PublicKeyLike