Home
last modified time | relevance | path

Searched refs:arrW (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSHA1Impl.java73 static void computeHash(int[] arrW) { in computeHash() argument
75 int a = arrW[HASH_OFFSET ]; in computeHash()
76 int b = arrW[HASH_OFFSET +1]; in computeHash()
77 int c = arrW[HASH_OFFSET +2]; in computeHash()
78 int d = arrW[HASH_OFFSET +3]; in computeHash()
79 int e = arrW[HASH_OFFSET +4]; in computeHash()
93 temp = arrW[t-3] ^ arrW[t-8] ^ arrW[t-14] ^ arrW[t-16]; in computeHash()
94 arrW[t] = ( temp<<1 ) | ( temp>>>31 ); in computeHash()
101 ( e + arrW[t] + 0x5A827999 ) ; in computeHash()
110 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ; in computeHash()
[all …]