blob: 39d53d4175085a8d9f9a5ce894fec7709960af0c (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* PBKDF2
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/pbkdf2.h>
#include <botan/get_byte.h>
#include <botan/internal/xor_buf.h>
namespace Botan {
/*
* Return a PKCS #5 PBKDF2 derived key
*/
OctetString PKCS5_PBKDF2::derive_key(size_t key_len,
const std::string& passphrase,
const byte salt[], size_t salt_size,
size_t iterations) const
{
if(iterations == 0)
throw Invalid_Argument("PKCS#5 PBKDF2: Invalid iteration count");
try
{
mac->set_key(reinterpret_cast<const byte*>(passphrase.data()),
passphrase.length());
}
catch(Invalid_Key_Length)
{
throw Exception(name() + " cannot accept passphrases of length " +
std::to_string(passphrase.length()));
}
SecureVector<byte> key(key_len);
byte* T = &key[0];
SecureVector<byte> U(mac->output_length());
u32bit counter = 1;
while(key_len)
{
size_t T_size = std::min<size_t>(mac->output_length(), key_len);
mac->update(salt, salt_size);
mac->update_be(counter);
mac->final(&U[0]);
xor_buf(T, U, T_size);
for(size_t j = 1; j != iterations; ++j)
{
mac->update(U);
mac->final(&U[0]);
xor_buf(T, U, T_size);
}
key_len -= T_size;
T += T_size;
++counter;
}
return key;
}
}
|