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

  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 50 // RIGHT2 - shifts to right for right half of long
58 private static final int[] RIGHT2 = { 0, 8, 16, 24 };
372 seed[lastWord + 1] = (int) ((counter >>> RIGHT2[n]) & 0xFFFFFFFF);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 60 // RIGHT2 - shifts to right for right half of long
68 private static final int[] RIGHT2 = { 0, 8, 16, 24 };
377 seed[lastWord + 1] = (int) ((counter >>> RIGHT2[n]) & 0xFFFFFFFF);

Completed in 180 milliseconds