How to generate SHA3-256 in .NET Core?

10.4k Views Asked by At

Is there an option to calculate SHA3-256 hashes in .NET Core? The goal is to recreate the isChecksumAddress util function in web3.js

3

There are 3 best solutions below

0
On BEST ANSWER

No, there is no way of doing that now with pure dotnet core.

It's been on the watch list since it was announced. Since we don't implement cryptographic algorithms within .NET we're waiting on support from the underlying platforms (Windows CNG, Apple Security.framework, and OpenSSL).

See this issue.

But you might have a better luck with BouncyCastle. It has an implementation here but I don't know if it is out yet (in nuget).

0
On

You can use SHA3.Net that is a SHA3 wrapper of the BouncyCastle implementation, implementing System.Security.Cryptography.HashAlgorithm

https://www.nuget.org/packages/SHA3.Net/

2
On

If you require a SHA-3 implementation in .NET your options are as follows (at the time of writing):

  1. Wait for .NET 8.0 which will ship with FIPS-202 implementations. Note that these will use the operating system's underlying crypto APIs, and therefore not all operating systems will be supported. As far as I know, managed fallback implementations are not provided.

  2. Use SHA3.NET which is implemented using BouncyCastle. Note that this pulls down over 14MB in dependencies due to BouncyCastle, and implements the Keccak SHA-3 standard, rather than FIPS-202, and will therefore yield different hashes to the APIs that will ship with .NET 8.0

  3. Use OnixLabs.Security.Cryptography which is implemented using the .NET cryptography APIs and has no upper dependency chain, therefore roughly 80KB in dependencies (in contrast to ~14MB for SHA3.NET), and implements the FIPS-202 standard, and will therefore yield identical hashes to the APIs that will ship with .NET 8.0. This includes all FIPS-202 SHA-3 variants: SHA3-224, SHA3-256, SHA3-384, SHA3-512, SHAKE-128, and SHAKE-256