Skip to content

modernuo/Argon2.Bindings

Repository files navigation

.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");