I used NuGet to get the BCrypt library and it's installed properly. Now I'd like to read about it and how to use it, yet I can't seem to find any documentation.

Even searching for the libraries namespace yielded no results:

DevOne.Security.Cryptography.BCrypt

Any suggestions on where to find some examples, or even plain old documentation? I'm using C#.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

There is no official documentation, other than this page.

That being said, you can easily look at the source code, as there are only a couple of public routines in the API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown