summaryrefslogtreecommitdiff
path: root/include/apr_sha1.h
diff options
context:
space:
mode:
authorianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2001-09-06 17:18:52 +0000
committerianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2001-09-06 17:18:52 +0000
commit89da851e307c5680a25035822ba4e209f8005a0f (patch)
treea8904cf231b88b260490d80d811ff503ca7c8882 /include/apr_sha1.h
parent7bd74f6c42d71acf12dce06dc2de826bed810b0a (diff)
downloadlibapr-util-89da851e307c5680a25035822ba4e209f8005a0f.tar.gz
Doxygen Fixes
Remove Doxygen warnings about undocument structures/defines apr_hooks stills needs a proper explantion about what APR_HOOK_LINK and APR_IMPLEMENT_EXTERNAL_BASE do. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58417 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_sha1.h')
-rw-r--r--include/apr_sha1.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/apr_sha1.h b/include/apr_sha1.h
index d97e98dc..de59f45a 100644
--- a/include/apr_sha1.h
+++ b/include/apr_sha1.h
@@ -70,9 +70,10 @@ extern "C" {
/**
* @file apr_sha1.h
- * @brief SHA1 library
+ * @brief APR-UTIL SHA1 library
*/
+/** size of the SHA1 DIGEST */
#define APR_SHA1_DIGESTSIZE 20
/**
@@ -80,13 +81,15 @@ extern "C" {
* hashed using our algorithm.
*/
#define APR_SHA1PW_ID "{SHA}"
-#define APR_SHA1PW_IDLEN 5
-typedef struct apr_sha1_ctx_t apr_sha1_ctx_t;
+/** length of the SHA Password */
+#define APR_SHA1PW_IDLEN 5
/**
* SHA1 context structure
*/
+typedef struct apr_sha1_ctx_t apr_sha1_ctx_t;
+
struct apr_sha1_ctx_t {
/** message digest */
apr_uint32_t digest[5];