Searched refs:core_hmac_md5 (Results 1 – 1 of 1) sorted by relevance
25 function hex_hmac_md5(key, data) { return binl2hex(core_hmac_md5(key, data)); }26 function b64_hmac_md5(key, data) { return binl2b64(core_hmac_md5(key, data)); }27 function str_hmac_md5(key, data) { return binl2str(core_hmac_md5(key, data)); }162 function core_hmac_md5(key, data) function