LitDev.LDEncryption.SHA512Hash C# (CSharp) Method

SHA512Hash() public static method

Create a SHA2-512 hash of a text input. This 128 character hash is recommended for the most secure password encryption.
public static SHA512Hash ( Primitive password ) : Primitive
password Primitive A text to create a hash (often a password).
return Primitive
        public static Primitive SHA512Hash(Primitive password)
        {
            return StringEncryption.CalculateSHA512Hash(password);
        }