blob: 42064529dc7f27432a51e997d6063a94886ad726 (
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
|
/*
* S2K
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/s2k.h>
namespace Botan {
/*
* Derive a key from a passphrase
*/
OctetString S2K::derive_key(u32bit key_len,
const std::string& passphrase) const
{
return derive(key_len, passphrase, salt, salt.size(), iterations());
}
/*
* Set the number of iterations
*/
void S2K::set_iterations(u32bit i)
{
iter = i;
}
/*
* Change the salt
*/
void S2K::change_salt(const byte new_salt[], u32bit length)
{
salt.set(new_salt, length);
}
/*
* Change the salt
*/
void S2K::change_salt(const MemoryRegion<byte>& new_salt)
{
change_salt(new_salt.begin(), new_salt.size());
}
/*
* Create a new random salt
*/
void S2K::new_random_salt(RandomNumberGenerator& rng,
u32bit length)
{
salt.resize(length);
rng.randomize(salt, length);
}
}
|