Class Bcrypt
Represents static wrappers for hasing strings with Bcrypt
Assembly: SlipeShared.dll
Syntax
public static class Bcrypt
Methods
|
Improve this Doc
View Source
Hash(String, Int32)
Hash a string with the Bcrypt algorithm
Declaration
public static Task<string> Hash(string input, int cost = 10)
Parameters
Returns
|
Improve this Doc
View Source
Verify(String, String)
Verify an input string against a Bcrypt hash
Declaration
public static Task<bool> Verify(string input, string hash)
Parameters
Returns