]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Document SHA-1 functions and structures
authorkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 9 Jul 2009 07:07:01 +0000 (07:07 +0000)
committerkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 9 Jul 2009 07:07:01 +0000 (07:07 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19385 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavutil/sha1.c
libavutil/sha1.h

index f3e45deb91ebc4dae126e4a3de0bcf82fdfc80c1..fbff52a17bf7063dcb3a554f56fe7f7fb9f582ef 100644 (file)
 #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);
index 0f14ca8960ae49d8f216b12b3b3128c659e831e8..b9a43cdd3978d17ce34d02e3328c38a3e4c059db 100644 (file)
@@ -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 */