Botan
1.11.4
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
src
kdf
kdf1
kdf1.cpp
Go to the documentation of this file.
1
/*
2
* KDF1
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Distributed under the terms of the Botan license
6
*/
7
8
#include <botan/kdf1.h>
9
10
namespace
Botan {
11
12
/*
13
* KDF1 Key Derivation Mechanism
14
*/
15
secure_vector<byte>
KDF1::derive
(
size_t
,
16
const
byte
secret[],
size_t
secret_len,
17
const
byte
P[],
size_t
P_len)
const
18
{
19
hash->
update
(secret, secret_len);
20
hash->
update
(P, P_len);
21
return
hash->
final
();
22
}
23
24
}
Generated on Wed May 1 2013 08:42:15 for Botan by
1.8.3.1