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