mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 00:58:36 -04:00
11 lines
177 B
C
11 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
|