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;
|