char*ap_md5(apr_pool_t *a, const unsigned char *string);
- Create an MD5 checksum of a given string
- Parameters
a Pool to allocate out of string String to get the checksum of - Return Value
- The checksum
char*ap_md5_binary(apr_pool_t *a, const unsigned char *buf, int len);
- Create an MD5 checksum of a string of binary data
- Parameters
a Pool to allocate out of buf Buffer to generate checksum for len The length of the buffer - Return Value
- The checksum
char*ap_md5contextTo64(apr_pool_t *p, apr_md5_ctx_t *context);
- Convert an MD5 checksum into a base64 encoding
- Parameters
p The pool to allocate out of context The context to convert - Return Value
- The converted encoding
char*ap_md5digest(apr_pool_t *p, apr_file_t *infile);
- Create an MD5 Digest for a given file
- Parameters
p The pool to allocate out of infile The file to create the digest for