#ifndef HTTP_AUTH_H #define HTTP_AUTH_H int strncmp_nocase(const char *a, const char *b, int num); /* * Create the authentication header contents for the `Basic' scheme. * This is done by encoding the string "USER:PASS" to base64 and * prepending the string "Basic " in front of it. * */ char* basic_authentication_encode(const char *user, const char *passwd); /* * Create the authentication header contents for the 'Digest' scheme. * only md5 method is available, see RFC 2617 for detail. * */ char* digest_authentication_encode(const char *line, const char *user, const char *passwd, const char *method, const char *path, int count, const char *cnonce); #endif /* HTTP_AUTH_H */