/** * File Organizer MCP Server v3.4.2 * Manifest Integrity Service * * Provides tamper detection for rollback manifests using cryptographic hashing. */ import type { RollbackManifest, RollbackAction } from "../types.js"; export interface ManifestVerificationResult { valid: boolean; error?: string; } export declare class ManifestIntegrityService { private readonly secretKey; constructor(); computeHash(actions: RollbackAction[], timestamp: number): string; computeSignature(manifest: Omit): string; verifyManifest(manifest: RollbackManifest): ManifestVerificationResult; } export declare const manifestIntegrityService: ManifestIntegrityService; //# sourceMappingURL=manifest-integrity.service.d.ts.map