Skip to main content

Class: Secp256r1PublicKey

A secp256r1 public key.

BCS

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

secp256r1-public-key = 33OCTET

Extends

  • UniffiAbstractObject

Implements

Properties

[destructorGuardSymbol]

readonly [destructorGuardSymbol]: UniffiGcObject;

[pointerLiteralSymbol]

readonly [pointerLiteralSymbol]: bigint;

[uniffiTypeNameSymbol]

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

Methods

deriveAddress()

deriveAddress(): AddressLike;

Derive an Address from this Public Key

An Address can be derived from a Secp256r1PublicKey by hashing the bytes of the public key prefixed with the Secp256r1 SignatureScheme flag (0x02).

hash( 0x02 || 33-byte secp256r1 public key)

Returns

AddressLike

Implementation of

Secp256r1PublicKeyLike.deriveAddress


equals()

equals(other): boolean;

Parameters

other

Secp256r1PublicKey

Returns

boolean


hashCode()

hashCode(): bigint;

Returns

bigint


scheme()

scheme(): SignatureScheme;

Returns the signature scheme for this public key.

Returns

SignatureScheme

Implementation of

Secp256r1PublicKeyLike.scheme


toBytes()

toBytes(): ArrayBuffer;

Returns

ArrayBuffer

Implementation of

Secp256r1PublicKeyLike.toBytes


toFlaggedBytes()

toFlaggedBytes(): ArrayBuffer;

Returns the bytes with signature scheme flag prepended

Returns

ArrayBuffer

Implementation of

Secp256r1PublicKeyLike.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): Secp256r1PublicKeyLike;

Parameters

bytes

ArrayBuffer

Returns

Secp256r1PublicKeyLike


fromStr()

static fromStr(s): Secp256r1PublicKeyLike;

Parameters

s

string

Returns

Secp256r1PublicKeyLike


instanceOf()

static instanceOf(obj_): obj_ is Secp256r1PublicKey;

Parameters

obj_

any

Returns

obj_ is Secp256r1PublicKey


random()

static random(): Secp256r1PublicKeyLike;

Returns

Secp256r1PublicKeyLike