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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifdef SUPPORT_SHA1
LIBHASHSUM_1_NONNULL_
static size_t
process(struct libhashsum_hasher *this, const void *data, size_t bytes)
{
const uint8_t *m = data;
int i;
bytes -= bytes & 63U;
if (bytes > SIZE_MAX >> 3) {
for (i = 0; i < 8; i++) {
libsha1_update(&this->state.sha1.s, m, bytes);
m = &m[bytes >> 3];
}
} else if (bytes) {
libsha1_update(&this->state.sha1.s, m, bytes << 3);
}
return bytes;
}
LIBHASHSUM_1_NONNULL_
static int
finalise_const(struct libhashsum_hasher *this, const void *data, size_t bytes, unsigned extra_bits)
{
const uint8_t *m = data;
size_t r;
if (extra_bits > 7U) {
errno = EINVAL;
return -1;
}
r = process(this, m, bytes);
m = &m[r];
bytes -= r;
if (!this->hash_output)
this->hash_output = this->state.sha1.sum;
libsha1_digest(&this->state.sha1.s, m, (bytes << 3) | (size_t)extra_bits, this->hash_output);
memset(&this->state.sha1.s, 0, sizeof(this->state.sha1.s));
return 0;
}
LIBHASHSUM_1_NONNULL_
static int
finalise(struct libhashsum_hasher *this, void *data, size_t bytes, unsigned extra_bits, size_t size)
{
(void) size;
return finalise_const(this, data, bytes, extra_bits);
}
int
libhashsum_init_sha1_hasher(struct libhashsum_hasher *this)
{
this->algorithm = LIBHASHSUM_SHA1;
this->algorithm_string = "SHA1";
this->input_block_size = 64U;
this->hash_size = sizeof(this->state.sha1.sum);
this->hash_output = NULL;
this->supports_non_whole_bytes = 1;
this->standard_partial_byte_input_encoding = LIBHASHSUM_LEAST_SIGNIFICANT;
this->standard_partial_byte_output_encoding = LIBHASHSUM_UNSUPPORTED;
this->hash_excess_bits = 0;
this->relative_performance = 259304505616284017ULL;
this->process = &process;
this->finalise_const = &finalise_const;
this->finalise = &finalise;
this->stretch = NULL;
this->destroy = NULL;
libsha1_init(&this->state.sha1.s, LIBSHA1_1);
return 0;
}
#else
int
libhashsum_init_sha1_hasher(struct libhashsum_hasher *this)
{
(void) this;
errno = ENOSYS;
return -1;
}
#endif
|