Files
heimdal/lib/otp/otp_md.h
Assar Westerlund cc2014c8c7 new files
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@885 ec53bebd-3082-4978-b11e-865c3cabbd6b
1996-10-25 05:51:14 +00:00

14 lines
407 B
C

/* $Id$ */
int otp_md4_init (OtpKey key, char *pwd, char *seed);
int otp_md4_hash (char *, size_t, 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_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_next (OtpKey key);