~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavutil/md5.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2008-12-26 00:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20081226001006-wd8cuqn8d81smkdp
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright (C) 2006 Michael Niedermayer (michaelni@gmx.at)
3
3
 * Copyright (C) 2003-2005 by Christopher R. Hertel (crh@ubiqx.mn.org)
4
4
 *
 
5
 * References:
 
6
 *  IETF RFC 1321: The MD5 Message-Digest Algorithm
 
7
 *       Ron Rivest. IETF, April, 1992
 
8
 *
 
9
 * based on http://ubiqx.org/libcifs/source/Auth/MD5.c
 
10
 *          from Christopher R. Hertel (crh@ubiqx.mn.org)
 
11
 * Simplified, cleaned and IMO redundant comments removed by michael.
 
12
 *
 
13
 * If you use gcc, then version 4.1 or later and -fomit-frame-pointer is
 
14
 * strongly recommended.
 
15
 *
5
16
 * This file is part of FFmpeg.
6
17
 *
7
18
 * FFmpeg is free software; you can redistribute it and/or
17
28
 * You should have received a copy of the GNU Lesser General Public
18
29
 * License along with FFmpeg; if not, write to the Free Software
19
30
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 
 *
21
 
 * References:
22
 
 *  IETF RFC 1321: The MD5 Message-Digest Algorithm
23
 
 *       Ron Rivest. IETF, April, 1992
24
 
 *
25
 
 * based on http://ubiqx.org/libcifs/source/Auth/MD5.c
26
 
 *          from Christopher R. Hertel (crh@ubiqx.mn.org)
27
 
 * simplified, cleaned and IMO redundant comments removed by michael
28
 
 *
29
 
 * if you use gcc, then version 4.1 or later and -fomit-frame-pointer is
30
 
 * strongly recommended
31
31
 */
32
32
 
33
33
#include "common.h"
35
35
#include "md5.h"
36
36
 
37
37
typedef struct AVMD5{
 
38
    uint64_t len;
38
39
    uint8_t  block[64];
39
40
    uint32_t ABCD[4];
40
 
    uint64_t len;
41
 
    int      b_used;
42
41
} AVMD5;
43
42
 
44
43
const int av_md5_size= sizeof(AVMD5);
50
49
    { 6, 10, 15, 21 }   /* Round 4 */
51
50
};
52
51
 
53
 
static const uint32_t T[64] = {
 
52
static const uint32_t T[64] = { // T[i]= fabs(sin(i+1)<<32)
54
53
    0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee,   /* Round 1 */
55
54
    0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501,
56
55
    0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be,
76
75
        t = S[i>>4][i&3];\
77
76
        a += T[i];\
78
77
\
79
 
        switch(i>>4){\
80
 
        case 0: a += (d ^ (b&(c^d))) + X[      i &15 ]; break;\
81
 
        case 1: a += (c ^ (d&(c^b))) + X[ (1+5*i)&15 ]; break;\
82
 
        case 2: a += (b^c^d)         + X[ (5+3*i)&15 ]; break;\
83
 
        case 3: a += (c^(b|~d))      + X[ (  7*i)&15 ]; break;\
 
78
        if(i<32){\
 
79
            if(i<16) a += (d ^ (b&(c^d))) + X[      i &15 ];\
 
80
            else     a += (c ^ (d&(c^b))) + X[ (1+5*i)&15 ];\
 
81
        }else{\
 
82
            if(i<48) a += (b^c^d)         + X[ (5+3*i)&15 ];\
 
83
            else     a += (c^(b|~d))      + X[ (  7*i)&15 ];\
84
84
        }\
85
85
        a = b + (( a << t ) | ( a >> (32 - t) ));
86
86
 
87
87
static void body(uint32_t ABCD[4], uint32_t X[16]){
88
88
 
89
89
    int t;
90
 
    int i attribute_unused;
 
90
    int i av_unused;
91
91
    unsigned int a= ABCD[3];
92
92
    unsigned int b= ABCD[2];
93
93
    unsigned int c= ABCD[1];
117
117
 
118
118
void av_md5_init(AVMD5 *ctx){
119
119
    ctx->len    = 0;
120
 
    ctx->b_used = 0;
121
120
 
122
121
    ctx->ABCD[0] = 0x10325476;
123
122
    ctx->ABCD[1] = 0x98badcfe;
126
125
}
127
126
 
128
127
void av_md5_update(AVMD5 *ctx, const uint8_t *src, const int len){
129
 
    int i;
 
128
    int i, j;
130
129
 
 
130
    j= ctx->len & 63;
131
131
    ctx->len += len;
132
132
 
133
133
    for( i = 0; i < len; i++ ){
134
 
        ctx->block[ ctx->b_used++ ] = src[i];
135
 
        if( 64 == ctx->b_used ){
 
134
        ctx->block[j++] = src[i];
 
135
        if( 64 == j ){
136
136
            body(ctx->ABCD, (uint32_t*) ctx->block);
137
 
            ctx->b_used = 0;
 
137
            j = 0;
138
138
        }
139
139
    }
140
140
}
141
141
 
142
142
void av_md5_final(AVMD5 *ctx, uint8_t *dst){
143
143
    int i;
144
 
 
145
 
    ctx->block[ctx->b_used++] = 0x80;
146
 
 
147
 
    memset(&ctx->block[ctx->b_used], 0, 64 - ctx->b_used);
148
 
 
149
 
    if( 56 < ctx->b_used ){
150
 
        body( ctx->ABCD, (uint32_t*) ctx->block );
151
 
        memset(ctx->block, 0, 64);
152
 
    }
153
 
 
154
 
    for(i=0; i<8; i++)
155
 
        ctx->block[56+i] = (ctx->len << 3) >> (i<<3);
156
 
 
157
 
    body(ctx->ABCD, (uint32_t*) ctx->block);
 
144
    uint64_t finalcount= le2me_64(ctx->len<<3);
 
145
 
 
146
    av_md5_update(ctx, "\200", 1);
 
147
    while((ctx->len & 63)<56)
 
148
        av_md5_update(ctx, "", 1);
 
149
 
 
150
    av_md5_update(ctx, (uint8_t*)&finalcount, 8);
158
151
 
159
152
    for(i=0; i<4; i++)
160
153
        ((uint32_t*)dst)[i]= le2me_32(ctx->ABCD[3-i]);
170
163
 
171
164
#ifdef TEST
172
165
#include <stdio.h>
173
 
main(){
 
166
#undef printf
 
167
int main(void){
174
168
    uint64_t md5val;
175
169
    int i;
176
170
    uint8_t in[1000];
182
176
    av_md5_sum( (uint8_t*)&md5val, in,  65); printf("%"PRId64"\n", md5val);
183
177
    for(i=0; i<1000; i++) in[i]= i % 127;
184
178
    av_md5_sum( (uint8_t*)&md5val, in,  999); printf("%"PRId64"\n", md5val);
 
179
 
 
180
    return 0;
185
181
}
186
182
#endif