mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
12 lines
177 B
C
12 lines
177 B
C
#ifndef HMAC_H
|
|
#define HMAC_H
|
|
|
|
unsigned char *
|
|
hmac(
|
|
EVP_MD *evp_md,
|
|
unsigned int seqno,
|
|
unsigned char *data, int datalen,
|
|
unsigned char *key, int len);
|
|
|
|
#endif
|