public static string DigestCalcHA2( string method, string uri) { string A2 = String.Format("{0}:{1}", method, uri); return GetMD5HashBinHex(A2); }