NET-Web-API-w-Angular/my-app/node_modules/@sigstore/verify/dist/trust/index.d.ts

6 lines
440 B
TypeScript
Raw Normal View History

2024-06-03 15:44:25 -04:00
import { type PublicKey, type TrustedRoot } from '@sigstore/protobuf-specs';
2024-02-08 19:38:41 -05:00
import type { KeyFinderFunc, TrustMaterial } from './trust.types';
export { filterCertAuthorities, filterTLogAuthorities } from './filter';
export type { CertAuthority, KeyFinderFunc, TLogAuthority, TrustMaterial, } from './trust.types';
export declare function toTrustMaterial(root: TrustedRoot, keys?: Record<string, PublicKey> | KeyFinderFunc): TrustMaterial;