/// <summary> /// Return the hash of a string value /// </summary> /// <param name="input">The string to hash</param> /// <returns>An SHA512 hash of the given string</returns> public static String ToSHA512(this String input) { return(DDRIT.ToSHA512(input)); }