summaryrefslogtreecommitdiffstats
path: root/hmac.h
blob: fb6802927392d731e9da6a8ada73e18b4699a1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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