crypto_hmac_md5()

 
Performs an HMAC-MD5 on "buffer" using key "key", storing the result in "result".
Syntax
crypto_hmac_md5( buffer var, key, format, result var )
Returns 1 on success, 0 on error.
  • buffer = the data that will be processed.
  • key = the encryption key
  • format = on of the literal string "hex" or "binary"
  • result = the return data.
User Annotations: crypto_hmac_md5