Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 539 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 539 Bytes

.NET Bindings for Argon 2

.NET 7 bindings for Argon 2

Installation

Install through NuGet. The package can be found by searching for Argon2.Bindings. This package only supports x64 and arm64 architectures. Pull requests are welcome to add support for other architectures/operating systems.

Usage

using System.Security.Cryptography;

var hasher = new Argon2PasswordHasher();

string myhash = hasher.Hash("mypassword");