1

Are there any MS libraries (.net core/standard) out there (currently research, beta or otherwise) offering Keccak / SHA-3 implementations ?

Sentinel
  • 3,582
  • 1
  • 30
  • 44

1 Answers1

4

See Add support for SHA3 (Keccak) on dotnet/corefx GitHub.

.NET has a strict policy of only using cryptographic algorithms provided by underlying platforms.

That said, there seem to be a few "unofficial" implementations available on NuGet.

desmondgc
  • 501
  • 2
  • 9
  • I suppose I should have left out the 'implementations' word. The underlying providers seem to be offering things like EC and Keccak but .NET Standard does not yet offer it. – Sentinel Dec 17 '17 at 16:21