I code a Login so i need to Hash my Password whit BCrypt. I use the Nuget Package for BCrypt.Net-Next. i Follow the Tutorial to Hash the Passwort for the Login but i get a arror thet the assembly reference missing is. I try:
using BCrypt;
using BCrypt.Net;
using BCrypt.Net-Next; <- Is a Error
using BCrypt.Net.Next;
Or install the Orginal BCrypt but that BCrypt is too Old for my Application
Nothing Work
So in the Tutorial from BCrypt.Net-Next you can use:
var a = BCrypt.HashPassword("StrnogPassword");
But if i use that i get the error CS0234 Missing Assembly Reference
Would be Awesome if someone can tell me how i use that Package for my Login. :)