license switch agpl -> busl1, sprints work, new product advisories

This commit is contained in:
master
2026-01-20 15:32:20 +02:00
parent 4903395618
commit c32fff8f86
1835 changed files with 38630 additions and 4359 deletions

View File

@@ -44,6 +44,26 @@ public sealed record BundleManifest
/// Verification section with keys and expectations.
/// </summary>
public BundleVerifySection? Verify { get; init; }
/// <summary>
/// Canonical manifest hash (sha256 over canonical JSON).
/// </summary>
public string? CanonicalManifestHash { get; init; }
/// <summary>
/// Subject digests for the bundle target.
/// </summary>
public BundleSubject? Subject { get; init; }
/// <summary>
/// Timestamp entries for offline verification.
/// </summary>
public ImmutableArray<TimestampEntry> Timestamps { get; init; } = [];
/// <summary>
/// Rekor proof entries for offline verification.
/// </summary>
public ImmutableArray<RekorProofEntry> RekorProofs { get; init; } = [];
}
/// <summary>