Coverage Report

Created: 2021-11-25 09:31

/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/internal/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
36
   {
18
36
   uint32_t counter = 0;
19
20
36
   secure_vector<uint8_t> buffer(hash.output_length());
21
308
   while(out_len)
22
272
      {
23
272
      hash.update(in, in_len);
24
272
      hash.update_be(counter);
25
272
      hash.final(buffer.data());
26
27
272
      const size_t xored = std::min<size_t>(buffer.size(), out_len);
28
272
      xor_buf(out, buffer.data(), xored);
29
272
      out += xored;
30
272
      out_len -= xored;
31
32
272
      ++counter;
33
272
      }
34
36
   }
35
36
}