verify.d.ts 210 B

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