BlakeSharpNG 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BlakeSharpNG --version 0.1.0
NuGet\Install-Package BlakeSharpNG -Version 0.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BlakeSharpNG" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlakeSharpNG --version 0.1.0
#r "nuget: BlakeSharpNG, 0.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BlakeSharpNG as a Cake Addin
#addin nuget:?package=BlakeSharpNG&version=0.1.0

// Install BlakeSharpNG as a Cake Tool
#tool nuget:?package=BlakeSharpNG&version=0.1.0

BlakeSharpNG

Build status Test status codecov Nuget version Total nuget downloads

This project is a C# implementation of original Blake. BLAKE is a cryptographic hash function based on Daniel J. Bernstein's ChaCha stream cipher, but a permuted copy of the input block. BLAKE was submitted to the NIST hash function competition as a proposal for next SHA-3 algorithm.

Public Classes

Classes Blake256 & Blake512 implement standard System.Security.Cryptography.HashAlgorithm.

Example

using var algo = new Blake256();
var hash = algo.ComputeHash("Hello, world");
var hashString = string.Concat(hash.Select(t => t.ToString("x2")));
Console.WriteLine(hashString);

License

Licensed under the Code Project Open License 1.02.

Author is Dominik Reichl dominik.reichl@t-online.de, who is also the creator of KeePass. Source code used with his explicit permission.

Origin source code comes from

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BlakeSharpNG:

Package Downloads
PedersenHashNet

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.1 423 1/23/2023
0.1.0 496 9/2/2022