using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AnHuiMI.Common { class StringUtils { // Token: 0x06000098 RID: 152 RVA: 0x00008CE8 File Offset: 0x00006EE8 public static long CurrentTimeStamp(bool isMinseconds = false) { TimeSpan timeSpan = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0); return Convert.ToInt64(isMinseconds ? timeSpan.TotalMilliseconds : timeSpan.TotalSeconds); } // Token: 0x06000099 RID: 153 RVA: 0x00008D28 File Offset: 0x00006F28 public static SortedDictionary KeySort(JObject obj) { var dic = new SortedDictionary(); foreach (var x in obj) { if (x.Value is JValue) dic.Add(x.Key, x.Value); else if (x.Value is JObject) dic.Add(x.Key, KeySort((JObject)x.Value)); else if (x.Value is JArray) { var tmp = new SortedDictionary[x.Value.Count()]; for (var i = 0; i < x.Value.Count(); i++) { tmp[i] = KeySort((JObject)x.Value[i]); } dic.Add(x.Key, tmp); } } return dic; } public static string SortJson(string json) { SortedDictionary keyValues = KeySort(JObject.Parse(json)); keyValues.OrderBy(m => m.Key); return JsonConvert.SerializeObject(keyValues); } // Token: 0x0600009B RID: 155 RVA: 0x00009080 File Offset: 0x00007280 public static string Json2sign(string json) { Dictionary dictionary = JsonConvert.DeserializeObject>(json); string text = ""; foreach (KeyValuePair keyValuePair in dictionary) { // 值为空不参与签名 //if (!string.IsNullOrEmpty(keyValuePair.Value + "")) //{ text = string.Concat(new object[] { text, keyValuePair.Key, "=", keyValuePair.Value, "&" }); //} } return text.Substring(0, text.Length - 1); } } }