#ifndef MD5_H
#define MD5_H

/*
Compute the MD5 checksum of string "str" and write the
hexadecimal representation to the string pointed to by "checksum".
*/

void md5_string( const char *str, char *checksum );

#endif
