Is there an option to calculate SHA3-256 hashes in .NET Core? The goal is to recreate the isChecksumAddress
util function in web3.js
How to generate SHA3-256 in .NET Core?
10.4k Views Asked by featherbits AtThere are 3 best solutions below

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

If you require a SHA-3 implementation in .NET your options are as follows (at the time of writing):
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.
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
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
No, there is no way of doing that now with pure dotnet core.
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).