librsync  2.0.2
checksum.c
1 /*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*-
2  *
3  * librsync -- the library for network deltas
4  *
5  * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
6  * Copyright (C) 1996 by Andrew Tridgell
7  * Copyright (C) 1996 by Paul Mackerras
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23 
24 #include "config.h"
25 
26 #include <assert.h>
27 #include <stdlib.h>
28 #include <stdio.h>
29 
30 #include "librsync.h"
31 #include "checksum.h"
32 #include "rollsum.h"
33 #include "blake2.h"
34 
35 /** A simple 32bit checksum that can be incrementally updated. */
36 rs_weak_sum_t rs_calc_weak_sum(void const *buf, size_t len)
37 {
38  Rollsum sum;
39 
40  RollsumInit(&sum);
41  RollsumUpdate(&sum, buf, len);
42  return RollsumDigest(&sum);
43 }
44 
45 /** Calculate and store into SUM a strong MD4 checksum of the file blocks seen
46  * so far.
47  *
48  * In plain rsync, the checksum is perturbed by a seed value. This is used when
49  * retrying a failed transmission: we've discovered that the hashes collided at
50  * some point, so we're going to try again with different hashes to see if we
51  * can get it right. (Check tridge's thesis for details and to see if that's
52  * correct.)
53  *
54  * Since we can't retry a web transaction I'm not sure if it's very useful in
55  * rproxy. */
56 void rs_calc_md4_sum(void const *buf, size_t len, rs_strong_sum_t *sum)
57 {
58  rs_mdfour((unsigned char *)sum, buf, len);
59 }
60 
61 void rs_calc_blake2_sum(void const *buf, size_t len, rs_strong_sum_t *sum)
62 {
63  blake2b_state ctx;
64  blake2b_init(&ctx, RS_MAX_STRONG_SUM_LENGTH);
65  blake2b_update(&ctx, (const uint8_t *)buf, len);
66  blake2b_final(&ctx, (uint8_t *)sum, RS_MAX_STRONG_SUM_LENGTH);
67 }
Public header for librsync.