src/main/java/com/yssh/utils/CacheUtils.java @@ -63,10 +63,8 @@ BigInteger bigInt = new BigInteger(1, byteArray); // 参数16表示16进制 String result = bigInt.toString(16); // 不足32位高位补零 while (result.length() < 32) { result = "0" + result; }