key.d.ts 219 B

12345678
  1. import { VerifyKeyObjectInput } from 'crypto';
  2. interface KeyInfo {
  3. keyType: string;
  4. scheme: string;
  5. keyVal: string;
  6. }
  7. export declare function getPublicKey(keyInfo: KeyInfo): VerifyKeyObjectInput;
  8. export {};