[SCM] libav/experimental: Extend AVSHA1 so it can be used in future SHA-2 code as well

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:48:46 UTC 2013


The following commit has been merged in the experimental branch:
commit 01cc62884528f26cc440738a66422830c1b86cd5
Author: Kostya Shishkov <kostya.shishkov at gmail.com>
Date:   Thu Jul 9 07:14:07 2009 +0000

    Extend AVSHA1 so it can be used in future SHA-2 code as well
    
    Originally committed as revision 19386 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/sha1.c b/libavutil/sha1.c
index fbff52a..a25bdbc 100644
--- a/libavutil/sha1.c
+++ b/libavutil/sha1.c
@@ -25,9 +25,10 @@
 
 /** hash context */
 typedef struct AVSHA1 {
+    uint8_t  digest_len;  ///< digest length in 32-bit words
     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
+    uint32_t state[8];    ///< current hash value
 } AVSHA1;
 
 const int av_sha1_size = sizeof(AVSHA1);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list