![]() | ![]() | ||||||||||||||
| |||||||||||||||
| hmac(3)
NAMEHMAC, HMAC_Init, HMAC_Update, HMAC_Final - HMAC message authentication code
SYNOPSIS#include <openssl/hmac.h> unsigned char *HMAC(const EVP_MD *evp_md, const void *key,
int key_len, const unsigned char *d, int n,
unsigned char *md, unsigned int *md_len);
void HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len,
const EVP_MD *md);
void HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len);
void HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
void HMAC_cleanup(HMAC_CTX *ctx);
DESCRIPTIONHMAC is a MAC (message authentication code), i.e. a keyed hash function used for message authentication, which is based on a hash function.
It places the result in md (which must have space for the output of the hash function, which is no more than EVP_MAX_MD_SIZE bytes). If md is NULL, the digest is placed in a static array. The size of the output is placed in md_len, unless it is NULL.
evp_md can be
The following functions may be used if the message is not completely stored in memory:
RETURN VALUES
CONFORMING TORFC 2104
SEE ALSOsha(3), evp(3)
HISTORY
| ||||||||||||||