- Implemented Attestation Chain API client with methods for verifying, fetching, and managing attestation chains. - Created models for Attestation Chain, including DSSE envelope structures and verification results. - Developed Triage Evidence API client for fetching finding evidence, including methods for evidence retrieval by CVE and component. - Added models for Triage Evidence, encapsulating evidence responses, entry points, boundary proofs, and VEX evidence. - Introduced mock implementations for both API clients to facilitate testing and development.
23 lines
600 B
C#
23 lines
600 B
C#
namespace StellaOps.Scanner.Reachability.Witnesses;
|
|
|
|
/// <summary>
|
|
/// Constants for the stellaops.witness.v1 schema.
|
|
/// </summary>
|
|
public static class WitnessSchema
|
|
{
|
|
/// <summary>
|
|
/// Current witness schema version.
|
|
/// </summary>
|
|
public const string Version = "stellaops.witness.v1";
|
|
|
|
/// <summary>
|
|
/// Prefix for witness IDs.
|
|
/// </summary>
|
|
public const string WitnessIdPrefix = "wit:";
|
|
|
|
/// <summary>
|
|
/// Default DSSE payload type for witnesses.
|
|
/// </summary>
|
|
public const string DssePayloadType = "application/vnd.stellaops.witness.v1+json";
|
|
}
|