avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+4 -3
View File
@@ -1,10 +1,11 @@
import { SerializedBundle } from '@sigstore/bundle';
import { Signer } from '@sigstore/verify';
import * as config from './config';
export declare function sign(payload: Buffer, options?: config.SignOptions): Promise<SerializedBundle>;
export declare function attest(payload: Buffer, payloadType: string, options?: config.SignOptions): Promise<SerializedBundle>;
export declare function verify(bundle: SerializedBundle, options?: config.VerifyOptions): Promise<void>;
export declare function verify(bundle: SerializedBundle, data: Buffer, options?: config.VerifyOptions): Promise<void>;
export declare function verify(bundle: SerializedBundle, options?: config.VerifyOptions): Promise<Signer>;
export declare function verify(bundle: SerializedBundle, data: Buffer, options?: config.VerifyOptions): Promise<Signer>;
export interface BundleVerifier {
verify(bundle: SerializedBundle, data?: Buffer): void;
verify(bundle: SerializedBundle, data?: Buffer): Signer;
}
export declare function createVerifier(options?: config.VerifyOptions): Promise<BundleVerifier>;