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

/openjdk7/jdk/test/sun/security/x509/X500Name/
H A DDerValueConstructor.java51 System.out.println(toHexString(ba));
77 System.out.println(toHexString(ba));
97 System.out.println(toHexString(ba));
119 private static String toHexString(byte[] block) { method in class:DerValueConstructor
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/Blowfish/
H A DBlowfishTestVector.java133 static private String toHexString(byte[] block) { method in class:BlowfishTestVector
/openjdk7/jdk/test/com/sun/crypto/provider/KeyAgreement/
H A DDHKeyAgreement2.java214 System.out.println("Alice secret: " + toHexString(aliceSharedSecret));
215 System.out.println("Bob secret: " + toHexString(bobSharedSecret));
270 private String toHexString(byte[] block) { method in class:DHKeyAgreement2
H A DDHKeyAgreement3.java128 System.out.println("Alice secret: " + toHexString(aliceSharedSecret));
132 System.out.println("Bob secret: " + toHexString(bobSharedSecret));
136 System.out.println("Carol secret: " + toHexString(carolSharedSecret));
178 private String toHexString(byte[] block) { method in class:DHKeyAgreement3
/openjdk7/jdk/test/java/lang/Math/
H A DTests.java38 private static String toHexString(float f) { method in class:Tests
40 return Float.toHexString(f);
42 return "NaN(0x" + Integer.toHexString(Float.floatToRawIntBits(f)) + ")";
45 private static String toHexString(double d) { method in class:Tests
47 return Double.toHexString(d);
49 return "NaN(0x" + Long.toHexString(Double.doubleToRawLongBits(d)) + ")";
56 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
69 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
82 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
83 + input2 + "\t(" + toHexString(input
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDebug.java181 public static String toHexString(BigInteger b) { method in class:Debug
/openjdk7/jdk/test/com/sun/crypto/provider/KeyFactory/
H A DPBKDF2HmacSHA1FactoryTest.java86 if (!tv.expectedVals[j].equals(toHexString(derivedKey))) {
87 System.out.println("got: " + toHexString(derivedKey));
112 private static String toHexString(byte[] bytes) { method in class:PBKDF2HmacSHA1FactoryTest
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DSupplementary.java179 "reverse() for <" + toHexString(input[i]) + ">",
187 "reverse() for <" + toHexString(testdata1[i][0]) + ">",
342 check(true, "appendCodePoint(" + toHexString(codePoint) + ") didn't throw "
382 + toHexString(got)
384 + toHexString(expected));
392 + toHexString(new String(got))
394 + toHexString(expected)
399 private static String toHexString(int c) { method in class:Supplementary
400 return "0x" + Integer.toHexString(c);
403 private static String toHexString(Strin method in class:Supplementary
[all...]
/openjdk7/jdk/test/java/lang/StringBuilder/
H A DSupplementary.java179 "reverse() for <" + toHexString(input[i]) + ">",
187 "reverse() for <" + toHexString(testdata1[i][0]) + ">",
342 check(true, "appendCodePoint(" + toHexString(codePoint) + ") didn't throw "
382 + toHexString(got)
384 + toHexString(expected));
392 + toHexString(got.toString())
394 + toHexString(expected)
399 private static String toHexString(int c) { method in class:Supplementary
400 return "0x" + Integer.toHexString(c);
403 private static String toHexString(Strin method in class:Supplementary
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DDouble.java273 public static String toHexString(double d) { method in class:Double
314 String signif = Long.toHexString(signifBits).substring(3,16);
H A DFloat.java276 public static String toHexString(float f) { method in class:Float
282 String s = Double.toHexString(FpUtils.scalb((double)f,
289 return Double.toHexString(f);
H A DInteger.java186 * {@code Integer.toHexString(n).toUpperCase()}
194 public static String toHexString(int i) { method in class:Integer
H A DLong.java167 * {@code Long.toHexString(n).toUpperCase()}
176 public static String toHexString(long i) { method in class:Long
/openjdk7/jdk/test/java/lang/String/
H A DSupplementary.java586 "indexOf(" + toHexString(c) + ") for <" + s + ">",
610 "lastIndexOf(" + toHexString(c) + ") for <" + s + ">",
618 "indexOf(" + toHexString(c) + ", "
629 "lastIndexOf(" + toHexString(c) + ", "
684 + toHexString(got)
686 + toHexString(expected));
690 private static String toHexString(int c) { method in class:Supplementary
691 return "0x" + Integer.toHexString(c);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DFunctions.java147 public static String toHexString(long value) { method in class:Functions
148 return Long.toHexString(value);
159 public static String toHexString(byte[] value) { method in class:Functions
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java1058 public static final String toHexString(byte[] bytes) { method in class:Utility
1348 char[] tmp = Integer.toHexString(b).toCharArray();
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java3059 private String toHexString(byte[] block) { method in class:KeyTool
3204 return toHexString(digest);

Completed in 127 milliseconds