mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-12 20:51:01 +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
|