Home | History | Annotate | Download | only in sunspider-0.9.1

Lines Matching refs:function

22 function hex_sha1(s){return binb2hex(core_sha1(str2binb(s),s.length * chrsz));}
23 function b64_sha1(s){return binb2b64(core_sha1(str2binb(s),s.length * chrsz));}
24 function str_sha1(s){return binb2str(core_sha1(str2binb(s),s.length * chrsz));}
25 function hex_hmac_sha1(key, data){ return binb2hex(core_hmac_sha1(key, data));}
26 function b64_hmac_sha1(key, data){ return binb2b64(core_hmac_sha1(key, data));}
27 function str_hmac_sha1(key, data){ return binb2str(core_hmac_sha1(key, data));}
32 function sha1_vm_test()
40 function core_sha1(x, len)
85 * Perform the appropriate triplet combination function for the current
88 function sha1_ft(t, b, c, d)
99 function sha1_kt(t)
108 function core_hmac_sha1(key, data)
128 function safe_add(x, y)
138 function rol(num, cnt)
145 * In 8-bit function, characters >255 have their hi-byte silently ignored.
147 function str2binb(str)
159 function binb2str(bin)
171 function binb2hex(binarray)
186 function binb2b64(binarray)