From f782ff428fd95b0ab3e2a88bd867fccd9a6e2767 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 27 Oct 1996 17:45:28 +0000 Subject: [PATCH] changed prototype of (*hash) git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@902 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/otp/otp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/otp/otp.h b/lib/otp/otp.h index 0d8de1072..26ee6c3da 100644 --- a/lib/otp/otp.h +++ b/lib/otp/otp.h @@ -56,7 +56,7 @@ typedef struct { OtpAlgID id; char *name; int hashsize; - int (*hash)(char *s, size_t len, char *res); + int (*hash)(char *s, size_t len, unsigned char *res); int (*init)(OtpKey key, char *pwd, char *seed); int (*next)(OtpKey key); } OtpAlgorithm;