摘要: { // //16进制转字符串 public static byte[] HexToString(byte[] Str) { string String = Encoding.Default.GetString(Str); byte[] str = new byte[Str.Length / 2]; 阅读全文
posted @ 2019-12-02 11:39 YZFHKMS-X 阅读(8067) 评论(1) 推荐(0) 编辑
摘要: { int Encryption::HexToStr(char *Hex) { int _0 = 0; int _1 = 0; char buf[2] = { 0 }; if (Hex[0] >= '0' && Hex[0] <= '9') { buf[0] = Hex[0]; _0 = atoi( 阅读全文
posted @ 2019-12-02 11:36 YZFHKMS-X 阅读(6379) 评论(0) 推荐(0) 编辑