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