summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/tuf-js/dist/utils/key.d.ts
blob: 7b631281a34086eb1b9c8b12567600cc36540448 (plain)
1
2
3
4
5
6
7
8
9
/// <reference types="node" />
import { VerifyKeyObjectInput } from 'crypto';
interface KeyInfo {
    keyType: string;
    scheme: string;
    keyVal: string;
}
export declare function getPublicKey(keyInfo: KeyInfo): VerifyKeyObjectInput;
export {};