blob: eae2fed59c9e3d98fb10d68f557337ca2ece4525 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* MGF1
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/mgf1.h>
#include <botan/exceptn.h>
#include <botan/internal/xor_buf.h>
#include <algorithm>
namespace Botan {
void mgf1_mask(HashFunction& hash,
const byte in[], size_t in_len,
byte out[], size_t out_len)
{
u32bit counter = 0;
while(out_len)
{
hash.update(in, in_len);
hash.update_be(counter);
secure_vector<byte> buffer = hash.final();
size_t xored = std::min<size_t>(buffer.size(), out_len);
xor_buf(out, &buffer[0], xored);
out += xored;
out_len -= xored;
++counter;
}
}
}
|