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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user