5 lines
241 B
TypeScript
5 lines
241 B
TypeScript
|
/// <reference types="node" />
|
||
|
import crypto from 'crypto';
|
||
|
import { JSONObject } from '../utils/types';
|
||
|
export declare const verifySignature: (metaDataSignedData: JSONObject, key: crypto.VerifyKeyObjectInput, signature: string) => boolean;
|