* Basic operation the algorithm uses. * * @param {number} a a * @param {number} b b * @param {number} c c * @param {number} d d * @param {number} x x * @param {number} s s * @param {number} t t * @returns {number} Result
(a, b, c, d, x, s, t)
| 324 | */ |
| 325 | |
| 326 | function md5ii(a, b, c, d, x, s, t) { |
| 327 | return md5cmn(c ^ (b | ~d), a, b, x, s, t); |
| 328 | } |
| 329 | /** |
| 330 | * Calculate the MD5 of an array of little-endian words, and a bit length. |
| 331 | * |