dariogriffo / sha3.net

C# port of Keccak, known as SHA3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build status NuGet GitHub license

N|Solid

sha3.net

C# port of Keccak, known as SHA3, based on Bouncy Castle library

How to use it

  • Just call any of the four static methods to return the SHA3 with the desired block size

Sha3.Sha3224()

Sha3.Sha3256()

Sha3.Sha3384()

Sha3.Sha3512()

and then call the ComputeHash method:

using (var shaAlg = Sha3.Sha3256())
{   
    var hash = shaAlg.ComputeHash(Encoding.UTF8.GetBytes("abc"));
}

Logo Provided by Vecteezy

About

C# port of Keccak, known as SHA3

License:MIT License


Languages

Language:C# 100.0%