Home
last modified time | relevance | path

Searched refs:hextText (Results 1 – 1 of 1) sorted by relevance

/packages/apps/SecureElement/src/com/android/se/security/
DHalRefDoParser.java237 private byte[] decodeHexUUID(String hextText) { in decodeHexUUID() argument
238 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()