Searched defs:toHexString (Results 1 - 7 of 7) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/
H A DUtils.java73 signature = toHexString(Integer.toString(Math.abs( rand.nextInt() % 1000 )).getBytes());
89 public static String toHexString(byte b[]) { method in class:Utils
141 String cidString = Utils.toHexString(cid);
158 return Integer.toHexString(rand.nextInt());
177 return SIPConstants.BRANCH_MAGIC_COOKIE + Utils.toHexString(bid) + this.signature;
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DMessageDigestAlgorithm.java183 return toHexString(digest.digest(data.getBytes()));
216 private static String toHexString(byte b[]) { method in class:MessageDigestAlgorithm
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
H A DSHA1.java599 private static String toHexString(byte[] b) method in class:SHA1
639 String dig1_res = toHexString(dig1);
640 String dig2_res = toHexString(dig2);
641 String dig3_res = toHexString(dig3);
/external/icu4c/test/intltest/
H A Ddtfmttst.cpp276 UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
288 buf += toHexString((c & 0xF000) >> 12);
289 buf += toHexString((c & 0x0F00) >> 8);
290 buf += toHexString((c & 0x00F0) >> 4);
291 buf += toHexString(c & 0x000F);
H A Dnumfmtst.cpp667 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
679 buf += toHexString((c & 0xF000) >> 12);
680 buf += toHexString((c & 0x0F00) >> 8);
681 buf += toHexString((c & 0x00F0) >> 4);
682 buf += toHexString(c & 0x000F);
H A Dusettest.cpp2113 static UChar toHexString(int32_t i) { return (UChar)(i + (i < 10 ? 0x30 : (0x41 - 10))); } function
2136 buf += toHexString((c & 0xF0000000) >> 28);
2137 buf += toHexString((c & 0x0F000000) >> 24);
2138 buf += toHexString((c & 0x00F00000) >> 20);
2139 buf += toHexString((c & 0x000F0000) >> 16);
2141 buf += toHexString((c & 0xF000) >> 12);
2142 buf += toHexString((c & 0x0F00) >> 8);
2143 buf += toHexString((c & 0x00F0) >> 4);
2144 buf += toHexString(c & 0x000F);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1053 milliseconds