Coverage Report

Created: 2026-07-25 06:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/botan/src/lib/hash/md5/md5.cpp
Line
Count
Source
1
/*
2
* MD5
3
* (C) 1999-2008 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/internal/md5.h>
9
10
#include <botan/internal/bit_ops.h>
11
#include <botan/internal/loadstor.h>
12
#include <botan/internal/rotate.h>
13
#include <botan/internal/stl_util.h>
14
15
#include <array>
16
17
namespace Botan {
18
namespace {
19
20
/*
21
* MD5 FF Function
22
*/
23
template <size_t S>
24
0
inline void FF(uint32_t& A, uint32_t B, uint32_t C, uint32_t D, uint32_t M) {
25
0
   A += choose(B, C, D) + M;
26
0
   A = rotl<S>(A) + B;
27
0
}
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::FF<7ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::FF<12ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::FF<17ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::FF<22ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
28
29
/*
30
* MD5 GG Function
31
*/
32
template <size_t S>
33
0
inline void GG(uint32_t& A, uint32_t B, uint32_t C, uint32_t D, uint32_t M) {
34
0
   A += choose(D, B, C) + M;
35
0
   A = rotl<S>(A) + B;
36
0
}
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::GG<5ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::GG<9ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::GG<14ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::GG<20ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
37
38
/*
39
* MD5 HH Function
40
*/
41
template <size_t S>
42
0
inline void HH(uint32_t& A, uint32_t B, uint32_t C, uint32_t D, uint32_t M) {
43
0
   A += (B ^ C ^ D) + M;
44
0
   A = rotl<S>(A) + B;
45
0
}
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::HH<4ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::HH<11ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::HH<16ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::HH<23ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
46
47
/*
48
* MD5 II Function
49
*/
50
template <size_t S>
51
0
inline void II(uint32_t& A, uint32_t B, uint32_t C, uint32_t D, uint32_t M) {
52
   // This expr is choose(D, B ^ C, ~C), but that is slower
53
0
   A += (C ^ (B | ~D)) + M;
54
0
   A = rotl<S>(A) + B;
55
0
}
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::II<6ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::II<10ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::II<15ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
Unexecuted instantiation: md5.cpp:void Botan::(anonymous namespace)::II<21ul>(unsigned int&, unsigned int, unsigned int, unsigned int, unsigned int)
56
57
}  // namespace
58
59
/*
60
* MD5 Compression Function
61
*/
62
0
void MD5::compress_n(MD5::digest_type& digest, std::span<const uint8_t> input, size_t blocks) {
63
0
   uint32_t A = digest[0], B = digest[1], C = digest[2], D = digest[3];
64
0
   std::array<uint32_t, 16> M;
65
66
0
   BufferSlicer in(input);
67
68
0
   for(size_t i = 0; i != blocks; ++i) {
69
0
      load_le(M, in.take<block_bytes>());
70
71
      // clang-format off
72
73
0
      FF< 7>(A, B, C, D, M[ 0] + 0xD76AA478);
74
0
      FF<12>(D, A, B, C, M[ 1] + 0xE8C7B756);
75
0
      FF<17>(C, D, A, B, M[ 2] + 0x242070DB);
76
0
      FF<22>(B, C, D, A, M[ 3] + 0xC1BDCEEE);
77
0
      FF< 7>(A, B, C, D, M[ 4] + 0xF57C0FAF);
78
0
      FF<12>(D, A, B, C, M[ 5] + 0x4787C62A);
79
0
      FF<17>(C, D, A, B, M[ 6] + 0xA8304613);
80
0
      FF<22>(B, C, D, A, M[ 7] + 0xFD469501);
81
0
      FF< 7>(A, B, C, D, M[ 8] + 0x698098D8);
82
0
      FF<12>(D, A, B, C, M[ 9] + 0x8B44F7AF);
83
0
      FF<17>(C, D, A, B, M[10] + 0xFFFF5BB1);
84
0
      FF<22>(B, C, D, A, M[11] + 0x895CD7BE);
85
0
      FF< 7>(A, B, C, D, M[12] + 0x6B901122);
86
0
      FF<12>(D, A, B, C, M[13] + 0xFD987193);
87
0
      FF<17>(C, D, A, B, M[14] + 0xA679438E);
88
0
      FF<22>(B, C, D, A, M[15] + 0x49B40821);
89
90
0
      GG< 5>(A, B, C, D, M[ 1] + 0xF61E2562);
91
0
      GG< 9>(D, A, B, C, M[ 6] + 0xC040B340);
92
0
      GG<14>(C, D, A, B, M[11] + 0x265E5A51);
93
0
      GG<20>(B, C, D, A, M[ 0] + 0xE9B6C7AA);
94
0
      GG< 5>(A, B, C, D, M[ 5] + 0xD62F105D);
95
0
      GG< 9>(D, A, B, C, M[10] + 0x02441453);
96
0
      GG<14>(C, D, A, B, M[15] + 0xD8A1E681);
97
0
      GG<20>(B, C, D, A, M[ 4] + 0xE7D3FBC8);
98
0
      GG< 5>(A, B, C, D, M[ 9] + 0x21E1CDE6);
99
0
      GG< 9>(D, A, B, C, M[14] + 0xC33707D6);
100
0
      GG<14>(C, D, A, B, M[ 3] + 0xF4D50D87);
101
0
      GG<20>(B, C, D, A, M[ 8] + 0x455A14ED);
102
0
      GG< 5>(A, B, C, D, M[13] + 0xA9E3E905);
103
0
      GG< 9>(D, A, B, C, M[ 2] + 0xFCEFA3F8);
104
0
      GG<14>(C, D, A, B, M[ 7] + 0x676F02D9);
105
0
      GG<20>(B, C, D, A, M[12] + 0x8D2A4C8A);
106
107
0
      HH< 4>(A, B, C, D, M[ 5] + 0xFFFA3942);
108
0
      HH<11>(D, A, B, C, M[ 8] + 0x8771F681);
109
0
      HH<16>(C, D, A, B, M[11] + 0x6D9D6122);
110
0
      HH<23>(B, C, D, A, M[14] + 0xFDE5380C);
111
0
      HH< 4>(A, B, C, D, M[ 1] + 0xA4BEEA44);
112
0
      HH<11>(D, A, B, C, M[ 4] + 0x4BDECFA9);
113
0
      HH<16>(C, D, A, B, M[ 7] + 0xF6BB4B60);
114
0
      HH<23>(B, C, D, A, M[10] + 0xBEBFBC70);
115
0
      HH< 4>(A, B, C, D, M[13] + 0x289B7EC6);
116
0
      HH<11>(D, A, B, C, M[ 0] + 0xEAA127FA);
117
0
      HH<16>(C, D, A, B, M[ 3] + 0xD4EF3085);
118
0
      HH<23>(B, C, D, A, M[ 6] + 0x04881D05);
119
0
      HH< 4>(A, B, C, D, M[ 9] + 0xD9D4D039);
120
0
      HH<11>(D, A, B, C, M[12] + 0xE6DB99E5);
121
0
      HH<16>(C, D, A, B, M[15] + 0x1FA27CF8);
122
0
      HH<23>(B, C, D, A, M[ 2] + 0xC4AC5665);
123
124
0
      II< 6>(A, B, C, D, M[ 0] + 0xF4292244);
125
0
      II<10>(D, A, B, C, M[ 7] + 0x432AFF97);
126
0
      II<15>(C, D, A, B, M[14] + 0xAB9423A7);
127
0
      II<21>(B, C, D, A, M[ 5] + 0xFC93A039);
128
0
      II< 6>(A, B, C, D, M[12] + 0x655B59C3);
129
0
      II<10>(D, A, B, C, M[ 3] + 0x8F0CCC92);
130
0
      II<15>(C, D, A, B, M[10] + 0xFFEFF47D);
131
0
      II<21>(B, C, D, A, M[ 1] + 0x85845DD1);
132
0
      II< 6>(A, B, C, D, M[ 8] + 0x6FA87E4F);
133
0
      II<10>(D, A, B, C, M[15] + 0xFE2CE6E0);
134
0
      II<15>(C, D, A, B, M[ 6] + 0xA3014314);
135
0
      II<21>(B, C, D, A, M[13] + 0x4E0811A1);
136
0
      II< 6>(A, B, C, D, M[ 4] + 0xF7537E82);
137
0
      II<10>(D, A, B, C, M[11] + 0xBD3AF235);
138
0
      II<15>(C, D, A, B, M[ 2] + 0x2AD7D2BB);
139
0
      II<21>(B, C, D, A, M[ 9] + 0xEB86D391);
140
141
      // clang-format off
142
143
0
      A = (digest[0] += A);
144
0
      B = (digest[1] += B);
145
0
      C = (digest[2] += C);
146
0
      D = (digest[3] += D);
147
0
   }
148
0
}
149
150
0
void MD5::init(digest_type& digest) {
151
0
   digest.assign({0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476});
152
0
}
153
154
0
std::unique_ptr<HashFunction> MD5::new_object() const {
155
0
   return std::make_unique<MD5>();
156
0
}
157
158
0
std::unique_ptr<HashFunction> MD5::copy_state() const {
159
0
   return std::make_unique<MD5>(*this);
160
0
}
161
162
0
void MD5::add_data(std::span<const uint8_t> input) {
163
0
   m_md.update(input);
164
0
}
165
166
0
void MD5::final_result(std::span<uint8_t> output) {
167
0
   m_md.final(output);
168
0
}
169
170
}  // namespace Botan