Skip to main content

Class: PasskeyPublicKey

Public key of a PasskeyAuthenticator.

This is used to derive the onchain Address for a PasskeyAuthenticator.

BCS

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

passkey-public-key = passkey-flag secp256r1-public-key

Extends

  • UniffiAbstractObject

Implements

Constructors

Constructor

new PasskeyPublicKey(publicKey): PasskeyPublicKey;

Parameters

publicKey

Secp256r1PublicKeyLike

Returns

PasskeyPublicKey

Overrides

UniffiAbstractObject.constructor

Properties

[destructorGuardSymbol]

readonly [destructorGuardSymbol]: UniffiGcObject;

[pointerLiteralSymbol]

readonly [pointerLiteralSymbol]: bigint;

[uniffiTypeNameSymbol]

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

Methods

deriveAddress()

deriveAddress(): AddressLike;

Derive an Address from this Passkey Public Key

An Address can be derived from a PasskeyPublicKey by hashing the bytes of the Secp256r1PublicKey that corresponds to this passkey prefixed with the Passkey SignatureScheme flag (0x06).

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

Returns

AddressLike

Implementation of

PasskeyPublicKeyLike.deriveAddress


equals()

equals(other): boolean;

Parameters

other

PasskeyPublicKey

Returns

boolean


inner()

inner(): Secp256r1PublicKeyLike;

Returns

Secp256r1PublicKeyLike

Implementation of

PasskeyPublicKeyLike.inner


toDebugString()

toDebugString(): string;

Returns

string


toString()

toString(): string;

Returns a string representation of an object.

Returns

string


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

instanceOf()

static instanceOf(obj_): obj_ is PasskeyPublicKey;

Parameters

obj_

any

Returns

obj_ is PasskeyPublicKey