BCrypt.Net.BCrypt.HashString C# (CSharp) Méthode

HashString() public static méthode

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.
Résultat string
        public static string HashString(string source)
        {
            return HashPassword(source);
        }

Same methods

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