diff sha1.c @ 747:860d74503de2 libavutil

Document SHA-1 functions and structures
author kostya
date Thu, 09 Jul 2009 07:07:01 +0000
parents ba8654776eab
children 79fdc3949d4d
line wrap: on
line diff
--- a/sha1.c	Thu Jul 09 02:20:29 2009 +0000
+++ b/sha1.c	Thu Jul 09 07:07:01 2009 +0000
@@ -23,10 +23,11 @@
 #include "bswap.h"
 #include "sha1.h"
 
+/** hash context */
 typedef struct AVSHA1 {
-    uint64_t count;
-    uint8_t buffer[64];
-    uint32_t state[5];
+    uint64_t count;       ///< number of bytes in buffer
+    uint8_t buffer[64];   ///< 512-bit buffer of input values used in hash updating
+    uint32_t state[5];    ///< current hash value
 } AVSHA1;
 
 const int av_sha1_size = sizeof(AVSHA1);