diff options
author | lloyd <[email protected]> | 2012-06-20 16:45:46 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-20 16:45:46 +0000 |
commit | b5753ba9469450adde1136c5d50e82b4cad7b658 (patch) | |
tree | 235faa83a76a128b2690c75616a328c5ec269565 /doc/pbkdf.txt | |
parent | 38acefedb83e291d13431a85120c942a389e0b99 (diff) |
Split log.txt into individual release notes. Integrate most of the
relevant contents from the pyblosxom news site into said relnotes.
DRY suggests having only one form of release notes, and having it in
the public source repo.
Also some updates for the allocator changes.
Diffstat (limited to 'doc/pbkdf.txt')
-rw-r--r-- | doc/pbkdf.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/pbkdf.txt b/doc/pbkdf.txt index f24dcd188..14434f63e 100644 --- a/doc/pbkdf.txt +++ b/doc/pbkdf.txt @@ -46,7 +46,7 @@ iterations and a 16 byte salt is recommend for new applications. PBKDF* pbkdf = get_pbkdf("PBKDF2(SHA-256)"); AutoSeeded_RNG rng; - SecureVector<byte> salt = rng.random_vec(16); + secure_vector<byte> salt = rng.random_vec(16); OctetString aes256_key = pbkdf->derive_key(32, "password", &salt[0], salt.size(), 10000); |