Class: Secp256k1VerifyingKey
Extends
UniffiAbstractObject
Implements
Constructors
Constructor
new Secp256k1VerifyingKey(publicKey): Secp256k1VerifyingKey;
Parameters
publicKey
Returns
Secp256k1VerifyingKey
Overrides
UniffiAbstractObject.constructor
Properties
[destructorGuardSymbol]
readonly [destructorGuardSymbol]: UniffiGcObject;
[pointerLiteralSymbol]
readonly [pointerLiteralSymbol]: bigint;
[uniffiTypeNameSymbol]
readonly [uniffiTypeNameSymbol]: "Secp256k1VerifyingKey" = "Secp256k1VerifyingKey";
Methods
equals()
equals(other): boolean;
Parameters
other
Secp256k1VerifyingKey
Returns
boolean
publicKey()
publicKey(): Secp256k1PublicKeyLike;
Returns
Implementation of
Secp256k1VerifyingKeyLike.publicKey
toDebugString()
toDebugString(): string;
Returns
string
toDer()
toDer(): ArrayBuffer;
Serialize this public key as DER-encoded data
Returns
ArrayBuffer
Implementation of
Secp256k1VerifyingKeyLike.toDer
toPem()
toPem(): string;
Serialize this public key into PEM
Returns
string
Implementation of
Secp256k1VerifyingKeyLike.toPem
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
verify()
verify(message, signature): void;
Parameters
message
ArrayBuffer
signature
Returns
void
Implementation of
Secp256k1VerifyingKeyLike.verify
verifySimple()
verifySimple(message, signature): void;
Parameters
message
ArrayBuffer
signature
Returns
void
Implementation of
Secp256k1VerifyingKeyLike.verifySimple
verifyUser()
verifyUser(message, signature): void;
Parameters
message
ArrayBuffer
signature
Returns
void
Implementation of
Secp256k1VerifyingKeyLike.verifyUser
fromDer()
static fromDer(bytes): Secp256k1VerifyingKeyLike;
Deserialize public key from ASN.1 DER-encoded data (binary format).
Parameters
bytes
ArrayBuffer
Returns
fromPem()
static fromPem(s): Secp256k1VerifyingKeyLike;
Deserialize public key from PEM.
Parameters
s
string
Returns
instanceOf()
static instanceOf(obj_): obj_ is Secp256k1VerifyingKey;
Parameters
obj_
any
Returns
obj_ is Secp256k1VerifyingKey