BgEngine.Infraestructure.Security.CodeFirstCrypto.SHA256 C# (CSharp) Method

SHA256() public static method

public static SHA256 ( string input ) : string
input string
return string
        public static string SHA256(string input)
        {
            return Hash(input, "sha256");
        }