Table of Contents

Interface IVerifyingKey

Namespace
Aptos
Assembly
Aptos.dll

A verifying key represents a collection of public keys that can be used to verify signatures or derive authentication keys. This interface is typically implemented to collect public keys for Account Authenticators.

public interface IVerifyingKey

Methods

AuthKey()

AuthenticationKey AuthKey()

Returns

AuthenticationKey

VerifySignature(byte[], Signature)

bool VerifySignature(byte[] message, Signature signature)

Parameters

message byte[]
signature Signature

Returns

bool

VerifySignature(string, Signature)

bool VerifySignature(string message, Signature signature)

Parameters

message string
signature Signature

Returns

bool