got rid of warning about signed vs unsigned

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@897 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-10-26 22:53:29 +00:00
parent c1e3bd0671
commit 8a57712ead
3 changed files with 35 additions and 35 deletions

View File

@@ -39,13 +39,13 @@
/* $Id$ */
int otp_md4_init (OtpKey key, char *pwd, char *seed);
int otp_md4_hash (char *, size_t, char *res);
int otp_md4_hash (char *, size_t, unsigned char *res);
int otp_md4_next (OtpKey key);
int otp_md5_init (OtpKey key, char *pwd, char *seed);
int otp_md5_hash (char *, size_t, char *res);
int otp_md5_hash (char *, size_t, unsigned char *res);
int otp_md5_next (OtpKey key);
int otp_sha_init (OtpKey key, char *pwd, char *seed);
int otp_sha_hash (char *, size_t, char *res);
int otp_sha_hash (char *, size_t, unsigned char *res);
int otp_sha_next (OtpKey key);