HomeSort by relevance Sort by last modified time
    Searched refs:nextBIndex (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 139 private transient int nextBIndex;
180 nextBIndex = HASHBYTES_TO_USE;
301 nextBIndex = HASHBYTES_TO_USE;
342 nextBIndex = HASHBYTES_TO_USE; // skipping remaining random bits
353 n = (HASHBYTES_TO_USE - nextBIndex) < (bytes.length - nextByteToReturn) ? HASHBYTES_TO_USE
354 - nextBIndex
357 System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n);
358 nextBIndex += n;
408 nextBIndex = 0;
415 nextBIndex += j
    [all...]
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 127 private transient int nextBIndex;
212 nextBIndex = HASHBYTES_TO_USE;
337 nextBIndex = HASHBYTES_TO_USE; // skipping remaining random bits
348 n = (HASHBYTES_TO_USE - nextBIndex) < (bytes.length - nextByteToReturn) ? HASHBYTES_TO_USE
349 - nextBIndex
352 System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n);
353 nextBIndex += n;
403 nextBIndex = 0;
410 nextBIndex += j;

Completed in 191 milliseconds