BcryptNet / bcrypt.net

BCrypt.Net - Bringing updates to the original bcrypt package

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

There is no type or namespace name "HashPassword" in the namespace "BCrypt"

orangeagain opened this issue · comments

`using System;
using BCrypt.Net;

namespace b5
{
    class Program
    {
        static void Main(string[] args)
        {
            string passwordHash = BCrypt.HashPassword("my password");
            BCrypt.Verify("my password", passwordHash);
            Console.WriteLine("Hello World!");
        }
    }
}`

This is my console app.
use nuget BCrypt.Net-Next 3.2.1.
just do not work,can you help me?

I found answer on stackoverflow