.NET 7 bindings for Argon 2
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.
using System.Security.Cryptography;
var hasher = new Argon2PasswordHasher();
string myhash = hasher.Hash("mypassword");