Files
2024-07-05 13:46:23 +02:00

4 lines
210 B
TypeScript

import crypto from 'crypto';
import { JSONObject } from '../utils/types';
export declare const verifySignature: (metaDataSignedData: JSONObject, key: crypto.VerifyKeyObjectInput, signature: string) => boolean;