Coverage Report

Created: 2021-02-21 07:20

/src/botan/src/lib/hash/mdx_hash/mdx_hash.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Merkle-Damgard Hash Function
3
* (C) 1999-2008,2018 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/internal/mdx_hash.h>
9
#include <botan/exceptn.h>
10
#include <botan/internal/loadstor.h>
11
#include <botan/internal/bit_ops.h>
12
13
namespace Botan {
14
15
/*
16
* MDx_HashFunction Constructor
17
*/
18
MDx_HashFunction::MDx_HashFunction(size_t block_len,
19
                                   bool byte_big_endian,
20
                                   bool bit_big_endian,
21
                                   uint8_t cnt_size) :
22
   m_pad_char(bit_big_endian == true ? 0x80 : 0x01),
23
   m_counter_size(cnt_size),
24
   m_block_bits(ceil_log2(block_len)),
25
   m_count_big_endian(byte_big_endian),
26
   m_count(0),
27
   m_buffer(block_len),
28
   m_position(0)
29
136k
   {
30
136k
   if(!is_power_of_2(block_len))
31
0
      throw Invalid_Argument("MDx_HashFunction block length must be a power of 2");
32
136k
   if(m_block_bits < 3 || m_block_bits > 16)
33
0
      throw Invalid_Argument("MDx_HashFunction block size too large or too small");
34
136k
   if(m_counter_size < 8 || m_counter_size > block_len)
35
0
      throw Invalid_State("MDx_HashFunction invalid counter length");
36
136k
   }
37
38
/*
39
* Clear memory of sensitive data
40
*/
41
void MDx_HashFunction::clear()
42
537k
   {
43
537k
   zeroise(m_buffer);
44
537k
   m_count = m_position = 0;
45
537k
   }
46
47
/*
48
* Update the hash
49
*/
50
void MDx_HashFunction::add_data(const uint8_t input[], size_t length)
51
731k
   {
52
731k
   const size_t block_len = static_cast<size_t>(1) << m_block_bits;
53
54
731k
   m_count += length;
55
56
731k
   if(m_position)
57
90.1k
      {
58
90.1k
      buffer_insert(m_buffer, m_position, input, length);
59
60
90.1k
      if(m_position + length >= block_len)
61
48.5k
         {
62
48.5k
         compress_n(m_buffer.data(), 1);
63
48.5k
         input += (block_len - m_position);
64
48.5k
         length -= (block_len - m_position);
65
48.5k
         m_position = 0;
66
48.5k
         }
67
90.1k
      }
68
69
   // Just in case the compiler can't figure out block_len is a power of 2
70
731k
   const size_t full_blocks = length >> m_block_bits;
71
731k
   const size_t remaining   = length & (block_len - 1);
72
73
731k
   if(full_blocks > 0)
74
348k
      {
75
348k
      compress_n(input, full_blocks);
76
348k
      }
77
78
731k
   buffer_insert(m_buffer, m_position, input + full_blocks * block_len, remaining);
79
731k
   m_position += remaining;
80
731k
   }
81
82
/*
83
* Finalize a hash
84
*/
85
void MDx_HashFunction::final_result(uint8_t output[])
86
370k
   {
87
370k
   const size_t block_len = static_cast<size_t>(1) << m_block_bits;
88
89
370k
   clear_mem(&m_buffer[m_position], block_len - m_position);
90
370k
   m_buffer[m_position] = m_pad_char;
91
92
370k
   if(m_position >= block_len - m_counter_size)
93
22.3k
      {
94
22.3k
      compress_n(m_buffer.data(), 1);
95
22.3k
      zeroise(m_buffer);
96
22.3k
      }
97
98
370k
   write_count(&m_buffer[block_len - m_counter_size]);
99
100
370k
   compress_n(m_buffer.data(), 1);
101
370k
   copy_out(output);
102
370k
   clear();
103
370k
   }
104
105
/*
106
* Write the count bits to the buffer
107
*/
108
void MDx_HashFunction::write_count(uint8_t out[])
109
370k
   {
110
370k
   BOTAN_ASSERT_NOMSG(m_counter_size <= output_length());
111
370k
   BOTAN_ASSERT_NOMSG(m_counter_size >= 8);
112
113
370k
   const uint64_t bit_count = m_count * 8;
114
115
370k
   if(m_count_big_endian)
116
369k
      store_be(bit_count, out + m_counter_size - 8);
117
102
   else
118
102
      store_le(bit_count, out + m_counter_size - 8);
119
370k
   }
120
121
}