BCrypt.Net.BCrypt.HashString C# (CSharp) Method

HashString() public static method

Hash a string using the OpenBSD bcrypt scheme and a salt generated by .
Just an alias for HashPassword.
public static HashString ( string source ) : string
source string The string to hash.
return string
        public static string HashString(string source)
        {
            return HashPassword(source);
        }

Same methods

BCrypt::HashString ( string source, int workFactor ) : string