MCPcopy Create free account
hub / github.com/TruthHun/BookStack / md5blk_array

Function md5blk_array

static/webuploader/webuploader.js:7087–7095  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

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,

Callers 2

md51_arrayFunction · 0.70
webuploader.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected