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

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSecureRandom.java59 private static final int DIGEST_SIZE = 20; field in class:SecureRandom
185 byte [] b = new byte[DIGEST_SIZE];
202 byte[] seed = new byte[DIGEST_SIZE];
211 todo = (result.length - index) < (DIGEST_SIZE - r) ?
212 (result.length - index) : (DIGEST_SIZE - r);
230 todo = (result.length - index) > DIGEST_SIZE ?
231 DIGEST_SIZE : result.length - index;
242 remCount %= DIGEST_SIZE;

Completed in 29 milliseconds