summaryrefslogtreecommitdiff
path: root/hmac.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-09 02:11:24 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-09 02:11:24 +0000
commit31ca54aa86a90052f8fe73fda66c7f39fd5079bc (patch)
tree91bf4097b9145323fd2aee645a2a42348e33b22e /hmac.c
parente9cf357a99dcd2db14635974289e04f5f0808123 (diff)
- itojun@cvs.openbsd.org 2001/02/08 19:30:52
sync with netbsd tree changes. - more strict prototypes, include necessary headers - use paths.h/pathnames.h decls - size_t typecase to int -> u_long
Diffstat (limited to 'hmac.c')
-rw-r--r--hmac.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hmac.c b/hmac.c
index e440d6117..831dd243a 100644
--- a/hmac.c
+++ b/hmac.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: hmac.c,v 1.6 2001/01/21 19:05:49 markus Exp $"); 26RCSID("$OpenBSD: hmac.c,v 1.7 2001/02/08 19:30:51 itojun Exp $");
27 27
28#include "xmalloc.h" 28#include "xmalloc.h"
29#include "getput.h" 29#include "getput.h"
@@ -31,6 +31,8 @@ RCSID("$OpenBSD: hmac.c,v 1.6 2001/01/21 19:05:49 markus Exp $");
31 31
32#include <openssl/hmac.h> 32#include <openssl/hmac.h>
33 33
34#include "hmac.h"
35
34u_char * 36u_char *
35hmac( 37hmac(
36 EVP_MD *evp_md, 38 EVP_MD *evp_md,