Searched refs:HEX_CHARS (Results 1 – 3 of 3) sorted by relevance
154 private static final char[] HEX_CHARS = "0123456789ABCDEF".toCharArray(); field in CertificateStore165 hexChars[i * 2] = HEX_CHARS[b >>> 4]; in bytesToHex()166 hexChars[i * 2 + 1] = HEX_CHARS[b & 0x0F]; in bytesToHex()
52 private static final String HEX_CHARS = "0123456789abcdef"; field in DigestMd5Utils215 .append(HEX_CHARS.charAt(unsignedByte / 16)) in toHex()216 .append(HEX_CHARS.charAt(unsignedByte % 16)); in toHex()
1613 .append(HEX_CHARS[(codePoint >>> 12) & 0xf]) in appendHexJavaScriptRepresentation()1614 .append(HEX_CHARS[(codePoint >>> 8) & 0xf]) in appendHexJavaScriptRepresentation()1615 .append(HEX_CHARS[(codePoint >>> 4) & 0xf]) in appendHexJavaScriptRepresentation()1616 .append(HEX_CHARS[codePoint & 0xf]); in appendHexJavaScriptRepresentation()2681 private static final char[] HEX_CHARS local2684 private static final char[] OCTAL_CHARS = HEX_CHARS; // ignore the last 8 :)2708 hex.append(HEX_CHARS[nibble1]); in bytesToHexString()2709 hex.append(HEX_CHARS[nibble2]); in bytesToHexString()