vince
2023-12-18 e0d062c35d663dc97ff34c2aec5297275b96c4e6
src/main/java/com/fzzy/api/utils/BytesUtil.java
@@ -461,4 +461,12 @@
      }
      return biannary2Decimal(two) + 1;
   }
   public static String byteToHex(byte b) {
      String hex = Integer.toHexString(b & 0xFF);
      if (hex.length() < 2) {
         hex = "0" + hex;
      }
      return hex;
   }
}