[FFmpeg-cvslog] r19385 - in trunk/libavutil: sha1.c sha1.h

kostya subversion
Thu Jul 9 09:07:01 CEST 2009


Author: kostya
Date: Thu Jul  9 09:07:01 2009
New Revision: 19385

Log:
Document SHA-1 functions and structures

Modified:
   trunk/libavutil/sha1.c
   trunk/libavutil/sha1.h

Modified: trunk/libavutil/sha1.c
==============================================================================
--- trunk/libavutil/sha1.c	Thu Jul  9 04:20:29 2009	(r19384)
+++ trunk/libavutil/sha1.c	Thu Jul  9 09:07:01 2009	(r19385)
@@ -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);

Modified: trunk/libavutil/sha1.h
==============================================================================
--- trunk/libavutil/sha1.h	Thu Jul  9 04:20:29 2009	(r19384)
+++ trunk/libavutil/sha1.h	Thu Jul  9 09:07:01 2009	(r19385)
@@ -27,8 +27,28 @@ extern const int av_sha1_size;
 
 struct AVSHA1;
 
+/**
+ * Initializes SHA-1 hashing.
+ *
+ * @param context pointer to the function context (of size av_sha_size)
+ */
 void av_sha1_init(struct AVSHA1* context);
+
+/**
+ * Updates hash value.
+ *
+ * @param context hash function context
+ * @param data    input data to update hash with
+ * @param len     input data length
+ */
 void av_sha1_update(struct AVSHA1* context, const uint8_t* data, unsigned int len);
+
+/**
+ * Finishes hashing and output digest value.
+ *
+ * @param context hash function context
+ * @param digest  buffer where output digest value is stored
+ */
 void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]);
 
 #endif /* AVUTIL_SHA1_H */



More information about the ffmpeg-cvslog mailing list