summaryrefslogtreecommitdiff
path: root/include/apr_md5.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-12 20:20:01 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-12 20:20:01 +0000
commit4add232110d8194946799e605c743a420e841493 (patch)
tree79b944e74083cdf044685b89f24d93421b7c204c /include/apr_md5.h
parent1d35d6ae5278bdd6a7a339adbb78389a9a5fe62f (diff)
downloadlibapr-util-4add232110d8194946799e605c743a420e841493.tar.gz
Reflect the deprecatation of MD5_DIGESTSIZE
for APR_MD5_DIGESTSIZE git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_md5.h')
-rw-r--r--include/apr_md5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_md5.h b/include/apr_md5.h
index 2e9f9d14..a0d828d5 100644
--- a/include/apr_md5.h
+++ b/include/apr_md5.h
@@ -155,7 +155,7 @@ APU_DECLARE(apr_status_t) apr_md5_update(apr_md5_ctx_t *context,
* @param digest The final MD5 digest
* @param context The MD5 content we are finalizing.
*/
-APU_DECLARE(apr_status_t) apr_md5_final(unsigned char digest[MD5_DIGESTSIZE],
+APU_DECLARE(apr_status_t) apr_md5_final(unsigned char digest[APR_MD5_DIGESTSIZE],
apr_md5_ctx_t *context);
/**
@@ -164,7 +164,7 @@ APU_DECLARE(apr_status_t) apr_md5_final(unsigned char digest[MD5_DIGESTSIZE],
* @param input The message block to use
* @param inputLen The length of the message block
*/
-APU_DECLARE(apr_status_t) apr_md5(unsigned char digest[MD5_DIGESTSIZE],
+APU_DECLARE(apr_status_t) apr_md5(unsigned char digest[APR_MD5_DIGESTSIZE],
const void *input,
apr_size_t inputLen);