md5_password
extern int md5_password (const char *key, char *crypted, int check);
#define check_md5_password(key,crypted) md5_password((key), (crypted), 1)
#define make_md5_password(key,crypted) md5_password((key), (crypted), 0)