Coverage Report

Created: 2019-12-03 15:21

/src/botan/src/lib/pk_pad/mgf1/mgf1.cpp
Line
Count
Source
1
/*
2
* MGF1
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/mgf1.h>
9
#include <botan/hash.h>
10
#include <algorithm>
11
12
namespace Botan {
13
14
void mgf1_mask(HashFunction& hash,
15
               const uint8_t in[], size_t in_len,
16
               uint8_t out[], size_t out_len)
17
8
   {
18
8
   uint32_t counter = 0;
19
8
20
8
   secure_vector<uint8_t> buffer(hash.output_length());
21
48
   while(out_len)
22
40
      {
23
40
      hash.update(in, in_len);
24
40
      hash.update_be(counter);
25
40
      hash.final(buffer.data());
26
40
27
40
      const size_t xored = std::min<size_t>(buffer.size(), out_len);
28
40
      xor_buf(out, buffer.data(), xored);
29
40
      out += xored;
30
40
      out_len -= xored;
31
40
32
40
      ++counter;
33
40
      }
34
8
   }
35
36
}