Searched refs:HEX_ARRAY (Results 1 – 1 of 1) sorted by relevance
1402 protected static final byte[] HEX_ARRAY = "0123456789ABCDEF".getBytes(); field in SyntheticPasswordManager1410 hexBytes[j * 2] = HEX_ARRAY[v >>> 4]; in bytesToHex()1411 hexBytes[j * 2 + 1] = HEX_ARRAY[v & 0x0F]; in bytesToHex()