using System.Text; using Service.Init; namespace Service.Charger.Common; public static class ChargerUtils { #region 随机数 /// /// 循环时用的随机数值 /// private static UInt16 _cysSeqNum = 0; /// /// 鉴权随时数 /// private static byte _randomNum = 10; /// /// 计算循环用UInt16随机数值 /// /// public static UInt16 GetUInt16SeqNum() { if (_cysSeqNum < 65535) { _cysSeqNum += 1; } else { _cysSeqNum = 1; } return _cysSeqNum; } /// /// 计算Byte随机数值 /// /// public static byte GetByteRandomNum() { if (_randomNum < 255) { _randomNum += 1; } else { _randomNum = 1; } return _randomNum; } public static string GenChargeOrderSn() { return StaticStationInfo.StationNo + DateTime.Now.ToString(ChargerConst.DateFormat) + GetRandomNumLimit99(); } /// /// 计算Byte随机数值 /// /// public static byte GetRandomNumLimit99() { if (_randomNum < 99) { _randomNum += 1; } else { _randomNum = 10; } return _randomNum; } #endregion 随机数 // // 获取到异或后的鉴权字节数组 // // 鉴权字符串 // 异或后的鉴权字节数组 public static byte[] GetAuthCodesResult(string strAuthCodes, byte key) { byte[] results = new byte[8]; if (!String.IsNullOrEmpty(strAuthCodes)) { byte[] authCodes = Encoding.ASCII.GetBytes(strAuthCodes); results[0] = Convert.ToByte(authCodes[0] ^ key); results[1] = Convert.ToByte(authCodes[1] ^ key); results[2] = Convert.ToByte(authCodes[2] ^ key); results[3] = Convert.ToByte(authCodes[3] ^ key); results[4] = Convert.ToByte(authCodes[4] ^ key); results[5] = Convert.ToByte(authCodes[5] ^ key); results[6] = Convert.ToByte(authCodes[6] ^ key); results[7] = Convert.ToByte(authCodes[7] ^ key); } return results; } }