mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-28 07:27:56 +00:00
7 lines
335 B
TypeScript
7 lines
335 B
TypeScript
import type { HashType } from './types.js';
|
|
/**
|
|
* @name secp256k1Verify
|
|
* @description Verifies the signature of `message`, using the supplied pair
|
|
*/
|
|
export declare function secp256k1Verify(msgHash: string | Uint8Array, signature: string | Uint8Array, address: string | Uint8Array, hashType?: HashType, onlyJs?: boolean): boolean;
|