2024-02-08 19:38:41 -05:00
|
|
|
import * as sigstore from '@sigstore/bundle';
|
|
|
|
import type { Signature } from '../signer';
|
|
|
|
import type { Artifact } from './base';
|
|
|
|
export declare function toMessageSignatureBundle(artifact: Artifact, signature: Signature): sigstore.BundleWithMessageSignature;
|
2024-06-03 15:44:25 -04:00
|
|
|
export declare function toDSSEBundle(artifact: Required<Artifact>, signature: Signature, singleCertificate?: boolean): sigstore.BundleWithDsseEnvelope;
|