Searched refs:randomBytes (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/sun/security/provider/SecureRandom/
H A DSelfSeed.java43 byte randomBytes[] = new byte[NUM_BYTES];
44 sr1.nextBytes(randomBytes);
56 if (randomBytes[i] != otherRandomBytes[i])
/openjdk7/jdk/test/java/util/zip/
H A DFileBuilder.java58 byte[] randomBytes = new byte[16384];
59 byte[] nullBytes = new byte[randomBytes.length/10];
62 rand.nextBytes(randomBytes);
64 raf.write(randomBytes);
/openjdk7/jdk/src/share/classes/java/rmi/dgc/
H A DVMID.java41 private static final byte[] randomBytes; field in class:VMID
61 randomBytes = bytes;
73 addr = randomBytes;
/openjdk7/jdk/src/share/classes/java/util/
H A DUUID.java144 byte[] randomBytes = new byte[16];
145 ng.nextBytes(randomBytes);
146 randomBytes[6] &= 0x0f; /* clear version */
147 randomBytes[6] |= 0x40; /* set to version 4 */
148 randomBytes[8] &= 0x3f; /* clear variant */
149 randomBytes[8] |= 0x80; /* set to IETF variant */
150 return new UUID(randomBytes);
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransferToChannel.java128 byte[] randomBytes = new byte[1024];
131 rand.nextBytes(randomBytes);
132 out.write(randomBytes);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPipeImpl.java61 boolean resultOK = IOUtil.randomBytes(someBytes);
/openjdk7/jdk/src/share/classes/java/security/
H A DSecureRandom.java572 private byte[] randomBytes; field in class:SecureRandom
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DIOUtil.java325 static native boolean randomBytes(byte[] someBytes); method in class:IOUtil
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java328 private static byte[] randomBytes(int len) { method in class:FindDecoderBugs

Completed in 42 milliseconds