Searched refs:hextText (Results 1 – 1 of 1) sorted by relevance
237 private byte[] decodeHexUUID(String hextText) { in decodeHexUUID() argument238 if (hextText == null || hextText.length() != 32) { in decodeHexUUID()243 byte[] bytes = new byte[hextText.length() / 2]; in decodeHexUUID()244 for (int i = 0; i < hextText.length(); i += 2) { in decodeHexUUID()245 bytes[i / 2] = hexToByte(hextText.charAt(i), hextText.charAt(i + 1)); in decodeHexUUID()