summaryrefslogtreecommitdiffstats
path: root/hmac.h
diff options
context:
space:
mode:
Diffstat (limited to 'hmac.h')
-rw-r--r--hmac.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/hmac.h b/hmac.h
new file mode 100644
index 00000000..fb680292
--- /dev/null
+++ b/hmac.h
@@ -0,0 +1,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