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

@@ -157,11 +157,6 @@ internal sealed class AwsKmsFacade : IAwsKmsFacade
private static string ResolveCurve(GetPublicKeyResponse response)
{
if (!string.IsNullOrWhiteSpace(response.CustomerMasterKeySpec))
{
return response.CustomerMasterKeySpec;
}
if (response.KeySpec is not null)
{
var keySpecName = response.KeySpec.ToString();

View File

@@ -5,12 +5,12 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.0" />
<PackageReference Include="AWSSDK.KeyManagementService" Version="4.0.6" />
<PackageReference Include="Google.Cloud.Kms.V1" Version="3.19.0" />
<PackageReference Include="Pkcs11Interop" Version="5.1.2" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.15.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Options" />
<PackageReference Include="AWSSDK.KeyManagementService" />
<PackageReference Include="Google.Cloud.Kms.V1" />
<PackageReference Include="Pkcs11Interop" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../StellaOps.Cryptography/StellaOps.Cryptography.csproj" />