(key, data)
| 437 | function str_sha1(s) { return binb2str(core_sha1(str2binb(s), s.length * chrsz)); } |
| 438 | function hex_hmac_sha1(key, data) { return binb2hex(core_hmac_sha1(key, data)); } |
| 439 | function b64_hmac_sha1(key, data) { return binb2b64(core_hmac_sha1(key, data)); } |
| 440 | function str_hmac_sha1(key, data) { return binb2str(core_hmac_sha1(key, data)); } |
| 441 | |
| 442 | /* |
nothing calls this directly
no test coverage detected
searching dependent graphs…