MyRepo-Ums/node_modules/@tufjs/models/dist/utils/verify.d.ts

4 lines
210 B
TypeScript
Raw Normal View History

2024-01-19 10:09:11 +00:00
import crypto from 'crypto';
import { JSONObject } from '../utils/types';
export declare const verifySignature: (metaDataSignedData: JSONObject, key: crypto.VerifyKeyObjectInput, signature: string) => boolean;