hotpower 发表于 2023-9-23 10:45

HotCRC内的Base4096ToHex()源码(菜农自创邮件编码)

菜农电子淘宝:https://hotcomlock.taobao.com/ 准备出书:http://hotcomlock.com/hotcomlock.html
    function Base4096ToHex(hotcodestr) {
                var str, ptr, ctr, i, j, num, hexstr;
                hexstr = HotCodeToHex(hotcodestr);
                str = "";
      for(i = 0;i < hexstr.length;i +=8) {
                        num = hextoint(hexstr.substr(i, 4)) - 0xae00;
                        ptr = inttohex(num, 4);
                        ctr = ptr.substr(2, 2) + ptr.substr(1, 1);
                        num = hextoint(hexstr.substr(i + 4, 4)) - 0xae00;
                        ptr = inttohex(num, 4);
                        ctr += ptr.substr(1, 1) + ptr.substr(2, 2);
                        while(ctr.substr(ctr.length - 2, 2) == "00"){
                                ctr = ctr.substr(0, ctr.length - 2);
                        }
                        str += ctr;
                }
                return str;
        }

https://bbs.21ic.com/data/attachment/forum/202309/22/101124qp474qggq7ix7pjx.jpg.thumb.jpg
页: [1]
查看完整版本: HotCRC内的Base4096ToHex()源码(菜农自创邮件编码)