Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
- Implement `SbomIngestServiceCollectionExtensionsTests` to verify the SBOM ingestion pipeline exports snapshots correctly. - Create `SbomIngestTransformerTests` to ensure the transformation produces expected nodes and edges, including deduplication of license nodes and normalization of timestamps. - Add `SbomSnapshotExporterTests` to test the export functionality for manifest, adjacency, nodes, and edges. - Introduce `VexOverlayTransformerTests` to validate the transformation of VEX nodes and edges. - Set up project file for the test project with necessary dependencies and configurations. - Include JSON fixture files for testing purposes.
43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
namespace StellaOps.Cryptography.Kms;
|
|
|
|
/// <summary>
|
|
/// Configuration for the Google Cloud KMS-backed <see cref="IKmsClient"/>.
|
|
/// </summary>
|
|
public sealed class GcpKmsOptions
|
|
{
|
|
private TimeSpan metadataCacheDuration = TimeSpan.FromMinutes(5);
|
|
private TimeSpan publicKeyCacheDuration = TimeSpan.FromMinutes(10);
|
|
|
|
/// <summary>
|
|
/// Gets or sets the service endpoint (default: <c>kms.googleapis.com</c>).
|
|
/// </summary>
|
|
public string Endpoint { get; set; } = "kms.googleapis.com";
|
|
|
|
/// <summary>
|
|
/// Gets or sets the cache duration for crypto key metadata lookups.
|
|
/// </summary>
|
|
public TimeSpan MetadataCacheDuration
|
|
{
|
|
get => metadataCacheDuration;
|
|
set => metadataCacheDuration = EnsurePositive(value, TimeSpan.FromMinutes(5));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the cache duration for exported public key material.
|
|
/// </summary>
|
|
public TimeSpan PublicKeyCacheDuration
|
|
{
|
|
get => publicKeyCacheDuration;
|
|
set => publicKeyCacheDuration = EnsurePositive(value, TimeSpan.FromMinutes(10));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets an optional factory that can construct a custom GCP facade (primarily used for testing).
|
|
/// </summary>
|
|
public Func<IServiceProvider, IGcpKmsFacade>? FacadeFactory { get; set; }
|
|
|
|
private static TimeSpan EnsurePositive(TimeSpan value, TimeSpan @default)
|
|
=> value <= TimeSpan.Zero ? @default : value;
|
|
}
|
|
|