blob: b0fa9744379025c08ed60738953c294215d6414b (
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
|
/*
* KDF1
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/kdf1.h>
namespace Botan {
/*
* KDF1 Key Derivation Mechanism
*/
secure_vector<byte> KDF1::derive(size_t,
const byte secret[], size_t secret_len,
const byte P[], size_t P_len) const
{
hash->update(secret, secret_len);
hash->update(P, P_len);
return hash->final();
}
}
|