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