(a, b, c, d, x, s, t)
| 52 | return md5cmn(b ^ c ^ d, a, b, x, s, t) |
| 53 | } |
| 54 | function md5ii (a, b, c, d, x, s, t) { |
| 55 | return md5cmn(c ^ (b | (~d)), a, b, x, s, t) |
| 56 | } |
| 57 | |
| 58 | /* |
| 59 | * Calculate the MD5 of an array of little-endian words, and a bit length. |