Added the use of DEK's for encryption of secrets. Both the KEK's and DEK's are stored in a way that you can have multiple key of which one is active. But the others are still available for decrypting. This allows for implementing key rotation. Co-authored-by: eelke <eelke@eelkeklein.nl> Co-authored-by: Eelke76 <31384324+Eelke76@users.noreply.github.com> Reviewed-on: #6
25 lines
1 KiB
XML
25 lines
1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EFCore.NamingConventions" Version="10.0.1" />
|
|
<PackageReference Include="FluentResults" Version="4.0.0" />
|
|
<PackageReference Include="FluentValidation" Version="12.1.1" />
|
|
<PackageReference Include="jose-jwt" Version="5.2.0" />
|
|
<PackageReference Include="LanguageExt.Core" Version="4.4.9" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="10.0.2" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="FluentResults" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|