Skip to content

Commit

Permalink
RELEASE/v1.1.0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
livebe01 committed Jul 17, 2023
1 parent afc86f3 commit 90d9d00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ This folder contains sample JSON files from all algorithms covered by the Gen/Va

## Setting Up

The code provided is C# using the .NET6 framework. This is a cross-platform framework. To run the code, you will need to install the [.NET6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0).
The code provided is C# using the .NET5 framework. This is a cross-platform framework. To run the code, you will need to install the [.NET5 SDK](https://dotnet.microsoft.com/download/dotnet/5.0).

Create or modify the following files:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private static void RegisterServices(IServiceCollection svc, OrleansConfig orlea
svc.AddSingleton<IEdwardsCurveFactory, EdwardsCurveFactory>();
svc.AddSingleton<IDsaEdFactory, DsaEdFactory>();

svc.AddSingleton<Crypto.Common.KDF.IKdfFactory, Crypto.KDF.KdfFactory>();
svc.AddTransient<Crypto.Common.KDF.IKdfFactory, Crypto.KDF.KdfFactory>(); // Needs to be transient to account for KMAC in KMAC-KDF

svc.AddSingleton<ILmOtsKeyPairFactory, LmOtsKeyPairFactory>();
svc.AddSingleton<ILmsKeyPairFactory, LmsKeyPairFactory>();
Expand Down

0 comments on commit 90d9d00

Please sign in to comment.