| 73 | } |
| 74 | |
| 75 | AP_DECLARE(char *) ap_md5(apr_pool_t *p, const unsigned char *string) |
| 76 | { |
| 77 | return ap_md5_binary(p, string, (int) strlen((char *)string)); |
| 78 | } |
| 79 | |
| 80 | /* these portions extracted from mpack, John G. Myers - jgm+@cmu.edu */ |
| 81 |
no test coverage detected