diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-02-09 03:11:24 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-02-09 03:11:24 +0100 |
commit | 31ca54aa86a90052f8fe73fda66c7f39fd5079bc (patch) | |
tree | 91bf4097b9145323fd2aee645a2a42348e33b22e /hmac.c | |
parent | - (djm) Add CVS Id's to files that we have missed (diff) | |
download | openssh-31ca54aa86a90052f8fe73fda66c7f39fd5079bc.tar.xz openssh-31ca54aa86a90052f8fe73fda66c7f39fd5079bc.zip |
- 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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: hmac.c,v 1.6 2001/01/21 19:05:49 markus Exp $"); +RCSID("$OpenBSD: hmac.c,v 1.7 2001/02/08 19:30:51 itojun Exp $"); #include "xmalloc.h" #include "getput.h" @@ -31,6 +31,8 @@ RCSID("$OpenBSD: hmac.c,v 1.6 2001/01/21 19:05:49 markus Exp $"); #include <openssl/hmac.h> +#include "hmac.h" + u_char * hmac( EVP_MD *evp_md, |