This commit is contained in:
StellaOps Bot
2025-11-27 21:10:06 +02:00
parent cfa2274d31
commit 8abbf9574d
106 changed files with 7078 additions and 3197 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace StellaOps.Scanner.Worker.Determinism;
/// <summary>
/// Deterministic metadata for a surface manifest: per-payload hashes and a Merkle-like root.
/// </summary>
public sealed record DeterminismEvidence(
IReadOnlyDictionary<string, string> PayloadHashes,
string MerkleRootSha256);