Class: Secp256r1Signature
A secp256r1 signature.
BCS
The BCS serialized form for this type is defined by the following ABNF:
secp256r1-signature = 64OCTET
Extends
UniffiAbstractObject
Implements
Properties
[destructorGuardSymbol]
readonly [destructorGuardSymbol]: UniffiGcObject;
[pointerLiteralSymbol]
readonly [pointerLiteralSymbol]: bigint;
[uniffiTypeNameSymbol]
readonly [uniffiTypeNameSymbol]: "Secp256r1Signature" = "Secp256r1Signature";
Methods
equals()
equals(other): boolean;
Parameters
other
Secp256r1Signature
Returns
boolean
hashCode()
hashCode(): bigint;
Returns
bigint
toBytes()
toBytes(): ArrayBuffer;
Returns
ArrayBuffer
Implementation of
Secp256r1SignatureLike.toBytes
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): Secp256r1SignatureLike;
Parameters
bytes
ArrayBuffer
Returns
fromStr()
static fromStr(s): Secp256r1SignatureLike;
Parameters
s
string
Returns
instanceOf()
static instanceOf(obj_): obj_ is Secp256r1Signature;
Parameters
obj_
any
Returns
obj_ is Secp256r1Signature
random()
static random(): Secp256r1SignatureLike;