Skip to content

mokg/HashSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HashSharp

usage:

using HashSharp;

class Example
{
    static void Main()
    {
        string plainText = "plaintexthere";
        var hasher = new PBKDF2
        {
            PlainText = plainText
        };

        string hashedText = hasher.Run();
        string salt = hasher.Salt;

        hasher.Verify(hashedText, plainText); /// true
    }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages