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

6 lines
435 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
import type { PublicKey, TrustedRoot } from '@sigstore/protobuf-specs';
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;