(a)
| 7085 | }, |
| 7086 | |
| 7087 | md5blk_array = function (a) { |
| 7088 | var md5blks = [], |
| 7089 | i; /* Andy King said do it this way. */ |
| 7090 | |
| 7091 | for (i = 0; i < 64; i += 4) { |
| 7092 | md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24); |
| 7093 | } |
| 7094 | return md5blks; |
| 7095 | }, |
| 7096 | |
| 7097 | md51 = function (s) { |
| 7098 | var n = s.length, |
no outgoing calls
no test coverage detected