Sha256: 1620bbd04032675c36285a64b2c9019cef45b1504f4ee97f9203a2a0aef050ee
Contents?: true
Size: 399 Bytes
Versions: 36
Compression:
Stored size: 399 Bytes
Contents
import type { Bundle, RFC3161SignedTimestamp, TransparencyLogEntry } from '@sigstore/bundle'; export type SignatureBundle = Bundle['content']; export type VerificationMaterial = { tlogEntries?: TransparencyLogEntry[]; rfc3161Timestamps?: RFC3161SignedTimestamp[]; }; export interface Witness { testify: (signature: SignatureBundle, publicKey: string) => Promise<VerificationMaterial>; }
Version data entries
36 entries across 36 versions & 2 rubygems