summaryrefslogtreecommitdiff
path: root/include/apr_md5.h
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-08-05 04:26:46 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-08-05 04:26:46 +0000
commitdeff2505e6d47cb9a8f5efff5b68d6b72aaf5af3 (patch)
tree8df284708b70144d95cef34d196871b6a67a93f5 /include/apr_md5.h
parent60236214372ff1c1c58f14bcf1d3c9f1ace68dcc (diff)
downloadlibapr-deff2505e6d47cb9a8f5efff5b68d6b72aaf5af3.tar.gz
Document all of the public APR structures with DocBook.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60477 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_md5.h')
-rw-r--r--include/apr_md5.h21
1 files changed, 13 insertions, 8 deletions
diff --git a/include/apr_md5.h b/include/apr_md5.h
index 412f1a7a1..d62eb0374 100644
--- a/include/apr_md5.h
+++ b/include/apr_md5.h
@@ -100,16 +100,21 @@ extern "C" {
/* UINT4 defines a four byte word */
typedef unsigned int UINT4;
-
-/* MD5 context. */
-typedef struct {
- UINT4 state[4]; /* state (ABCD) */
- UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
- unsigned char buffer[64]; /* input buffer */
+typedef struct ap_md5_ctx_t ap_md5_ctx_t;
+
+/** MD5 context. */
+struct ap_md5_ctx_t {
+ /** state (ABCD) */
+ UINT4 state[4];
+ /** number of bits, modulo 2^64 (lsb first) */
+ UINT4 count[2];
+ /** input buffer */
+ unsigned char buffer[64];
#if APR_HAS_XLATE
- apr_xlate_t *xlate; /* translation handle */
+ /** translation handle */
+ apr_xlate_t *xlate;
#endif
-} ap_md5_ctx_t;
+};
/**
* MD5 Initialize. Begins an MD5 operation, writing a new context.