1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* ISC license. */
#include <sys/types.h>
#include <stdint.h>
#include <skalibs/uint32.h>
#include <skalibs/bytestr.h>
#include <skalibs/md5.h>
#include "md5-internal.h"
void md5_update (MD5Schedule *ctx, char const *s, size_t len)
{
uint32 t = ctx->bits[0] ;
if ((ctx->bits[0] = t + (len << 3)) < t)
ctx->bits[1]++ ;
ctx->bits[1] += len >> 29 ;
t = (t >> 3) & 0x3f ;
if (t)
{
unsigned char *p = ctx->in + t ;
t = 64 - t ;
if (len < t)
{
byte_copy((char *)p, len, s) ;
return ;
}
byte_copy((char *)p, t, s) ;
uint32_little_endian((char *)ctx->in, 16) ;
md5_transform(ctx->buf, (uint32_t *)ctx->in) ;
s += t ; len -= t ;
}
while (len >= 64)
{
byte_copy((char *)ctx->in, 64, s) ;
uint32_little_endian((char *)ctx->in, 16) ;
md5_transform(ctx->buf, (uint32_t *)ctx->in) ;
s += 64 ; len -= 64 ;
}
byte_copy((char *)ctx->in, len, s) ;
}
|