Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.

This commit is contained in:
StellaOps Bot
2025-12-26 21:54:17 +02:00
parent 335ff7da16
commit c2b9cd8d1f
3717 changed files with 264714 additions and 48202 deletions

View File

@@ -1,4 +1,4 @@
using System.Collections.Immutable;
using System.Collections.Immutable;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
@@ -99,13 +99,14 @@ public sealed class CloudKmsClientTests
public void KmsCryptoProvider_Skips_NonExportable_Keys()
{
using var fixture = new EcdsaFixture();
var kmsClient = new NonExportingKmsClient(fixture.Parameters);
var parameters = fixture.Parameters;
var kmsClient = new NonExportingKmsClient(parameters);
var provider = new KmsCryptoProvider(kmsClient);
var signingKey = new CryptoSigningKey(
new CryptoKeyReference("arn:aws:kms:us-east-1:123456789012:key/demo", "kms"),
KmsAlgorithms.Es256,
in fixture.Parameters,
in parameters,
DateTimeOffset.UtcNow,
metadata: new Dictionary<string, string?>(StringComparer.OrdinalIgnoreCase)
{
@@ -161,7 +162,6 @@ public sealed class CloudKmsClientTests
public async Task Fido2Client_Signs_Verifies_And_Exports()
{
using var fixture = new EcdsaFixture();
using StellaOps.TestKit;
var authenticator = new TestFidoAuthenticator(fixture);
var options = new Fido2Options
{