diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/digest.c | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/digest.c')
-rw-r--r-- | src/digest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/digest.c b/src/digest.c index d5461950..090b1aec 100644 --- a/src/digest.c +++ b/src/digest.c @@ -35,7 +35,7 @@ static Dstr *md5hexdigest(const Dstr *data) return result; } -/* +/** * Returns a pointer to a newly allocated string containing a cnonce */ char *a_Digest_create_cnonce(void) @@ -48,7 +48,7 @@ char *a_Digest_create_cnonce(void) return result; } -/* +/** * This portion only has to be calculated once. */ int a_Digest_compute_digest(AuthRealm_t *realm, const char *username, @@ -86,7 +86,7 @@ int a_Digest_compute_digest(AuthRealm_t *realm, const char *username, return 1; } -/* +/** * This portion is calculatd for each request. */ static Dstr *Digest_create_response(AuthRealm_t *realm, const char *method, @@ -158,7 +158,7 @@ static void Digest_Dstr_append_token_value(Dstr *str, int delimiter, } } -/* +/** * Construct Digest Authorization header. * * Field ordering: furaisanjin reports that his DVD recorder requires the |