Coverage Report

Created: 2021-05-04 09:02

/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
124k
   {
30
124k
   if(!is_power_of_2(block_len))
31
0
      throw Invalid_Argument("MDx_HashFunction block length must be a power of 2");
32
124k
   if(m_block_bits < 3 || m_block_bits > 16)
33
0
      throw Invalid_Argument("MDx_HashFunction block size too large or too small");
34
124k
   if(m_counter_size < 8 || m_counter_size > block_len)
35
0
      throw Invalid_State("MDx_HashFunction invalid counter length");
36
124k
   }
37
38
/*
39
* Clear memory of sensitive data
40
*/
41
void MDx_HashFunction::clear()
42
530k
   {
43
530k
   zeroise(m_buffer);
44
530k
   m_count = m_position = 0;
45
530k
   }
46
47
/*
48
* Update the hash
49
*/
50
void MDx_HashFunction::add_data(const uint8_t input[], size_t length)
51
761k
   {
52
761k
   const size_t block_len = static_cast<size_t>(1) << m_block_bits;
53
54
761k
   m_count += length;
55
56
761k
   if(m_position)
57
101k
      {
58
101k
      buffer_insert(m_buffer, m_position, input, length);
59
60
101k
      if(m_position + length >= block_len)
61
59.3k
         {
62
59.3k
         compress_n(m_buffer.data(), 1);
63
59.3k
         input += (block_len - m_position);
64
59.3k
         length -= (block_len - m_position);
65
59.3k
         m_position = 0;
66
59.3k
         }
67
101k
      }
68
69
   // Just in case the compiler can't figure out block_len is a power of 2
70
761k
   const size_t full_blocks = length >> m_block_bits;
71
761k
   const size_t remaining   = length & (block_len - 1);
72
73
761k
   if(full_blocks > 0)
74
357k
      {
75
357k
      compress_n(input, full_blocks);
76
357k
      }
77
78
761k
   buffer_insert(m_buffer, m_position, input + full_blocks * block_len, remaining);
79
761k
   m_position += remaining;
80
761k
   }
81
82
/*
83
* Finalize a hash
84
*/
85
void MDx_HashFunction::final_result(uint8_t output[])
86
372k
   {
87
372k
   const size_t block_len = static_cast<size_t>(1) << m_block_bits;
88
89
372k
   clear_mem(&m_buffer[m_position], block_len - m_position);
90
372k
   m_buffer[m_position] = m_pad_char;
91
92
372k
   if(m_position >= block_len - m_counter_size)
93
16.4k
      {
94
16.4k
      compress_n(m_buffer.data(), 1);
95
16.4k
      zeroise(m_buffer);
96
16.4k
      }
97
98
372k
   BOTAN_ASSERT_NOMSG(m_counter_size <= output_length());
99
372k
   BOTAN_ASSERT_NOMSG(m_counter_size >= 8);
100
101
372k
   const uint64_t bit_count = m_count * 8;
102
103
372k
   if(m_count_big_endian)
104
372k
      store_be(bit_count, &m_buffer[block_len - 8]);
105
97
   else
106
97
      store_le(bit_count, &m_buffer[block_len - 8]);
107
108
372k
   compress_n(m_buffer.data(), 1);
109
372k
   copy_out(output);
110
372k
   clear();
111
372k
   }
112
113
}