diff sha1.h @ 747:860d74503de2 libavutil

Document SHA-1 functions and structures
author kostya
date Thu, 09 Jul 2009 07:07:01 +0000
parents bd4052d9050c
children 1e5bfdf9054d
line wrap: on
line diff
--- a/sha1.h	Thu Jul 09 02:20:29 2009 +0000
+++ b/sha1.h	Thu Jul 09 07:07:01 2009 +0000
@@ -27,8 +27,28 @@
 
 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 */