(key, data)
| 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 | /* |
| 443 | * Perform a simple self-test to see if the VM is working |
nothing calls this directly
no test coverage detected
searching dependent graphs…