diff options
author | lloyd <[email protected]> | 2008-10-26 02:26:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-26 02:26:59 +0000 |
commit | 7c4f004b837ca96894db839c3f04f8f1238947e7 (patch) | |
tree | b112578b686eea603152dc4eb507ef4a0f38037c /src/s2k/pbkdf2 | |
parent | dea1aa500fd7da2968448677fd628e8a4dddb6fb (diff) |
Move s2k.{h,cpp} and S2K algos from core and kdf to new s2k/ dir
Diffstat (limited to 'src/s2k/pbkdf2')
-rw-r--r-- | src/s2k/pbkdf2/info.txt | 10 | ||||
-rw-r--r-- | src/s2k/pbkdf2/pbkdf2.cpp | 80 | ||||
-rw-r--r-- | src/s2k/pbkdf2/pbkdf2.h | 38 |
3 files changed, 128 insertions, 0 deletions
diff --git a/src/s2k/pbkdf2/info.txt b/src/s2k/pbkdf2/info.txt new file mode 100644 index 000000000..e51a331c6 --- /dev/null +++ b/src/s2k/pbkdf2/info.txt @@ -0,0 +1,10 @@ +realname "Pbkdf2" + +define PBKDF2 + +load_on auto + +<add> +pbkdf2.cpp +pbkdf2.h +</add> diff --git a/src/s2k/pbkdf2/pbkdf2.cpp b/src/s2k/pbkdf2/pbkdf2.cpp new file mode 100644 index 000000000..baa227526 --- /dev/null +++ b/src/s2k/pbkdf2/pbkdf2.cpp @@ -0,0 +1,80 @@ +/************************************************* +* PBKDF2 Source File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#include <botan/pbkdf2.h> +#include <botan/loadstor.h> +#include <botan/xor_buf.h> + +namespace Botan { + +/************************************************* +* Return a PKCS#5 PBKDF2 derived key * +*************************************************/ +OctetString PKCS5_PBKDF2::derive(u32bit key_len, + const std::string& passphrase, + const byte salt[], u32bit salt_size, + u32bit iterations) const + { + if(iterations == 0) + throw Invalid_Argument("PKCS#5 PBKDF2: Invalid iteration count"); + + if(passphrase.length() == 0) + throw Invalid_Argument("PKCS#5 PBKDF2: Empty passphrase is invalid"); + + mac->set_key(reinterpret_cast<const byte*>(passphrase.data()), + passphrase.length()); + + SecureVector<byte> key(key_len); + + byte* T = key.begin(); + + u32bit counter = 1; + while(key_len) + { + u32bit T_size = std::min(mac->OUTPUT_LENGTH, key_len); + SecureVector<byte> U(mac->OUTPUT_LENGTH); + + mac->update(salt, salt_size); + for(u32bit j = 0; j != 4; ++j) + mac->update(get_byte(j, counter)); + mac->final(U); + xor_buf(T, U, T_size); + + for(u32bit j = 1; j != iterations; ++j) + { + mac->update(U); + mac->final(U); + xor_buf(T, U, T_size); + } + + key_len -= T_size; + T += T_size; + ++counter; + } + + return key; + } + +/************************************************* +* Return the name of this type * +*************************************************/ +std::string PKCS5_PBKDF2::name() const + { + return "PBKDF2(" + mac->name() + ")"; + } + +S2K* PKCS5_PBKDF2::clone() const + { + return new PKCS5_PBKDF2(mac->clone()); + } + +/************************************************* +* PKCS5_PBKDF2 Constructor * +*************************************************/ +PKCS5_PBKDF2::PKCS5_PBKDF2(MessageAuthenticationCode* m) : mac(m) {} + +PKCS5_PBKDF2::~PKCS5_PBKDF2() { delete mac; } + +} diff --git a/src/s2k/pbkdf2/pbkdf2.h b/src/s2k/pbkdf2/pbkdf2.h new file mode 100644 index 000000000..1b27c5acb --- /dev/null +++ b/src/s2k/pbkdf2/pbkdf2.h @@ -0,0 +1,38 @@ +/************************************************* +* PBKDF2 Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_PBKDF2_H__ +#define BOTAN_PBKDF2_H__ + +#include <botan/s2k.h> +#include <botan/base.h> + +namespace Botan { + +/** +* This class implements the PKCS #5 PBKDF2 functionality. +*/ +class BOTAN_DLL PKCS5_PBKDF2 : public S2K + { + public: + std::string name() const; + S2K* clone() const; + + /** + * Create a PKCS #5 instance using the specified message auth code + * @param mac the MAC to use + */ + PKCS5_PBKDF2(MessageAuthenticationCode* mac); + ~PKCS5_PBKDF2(); + private: + OctetString derive(u32bit, const std::string&, + const byte[], u32bit, u32bit) const; + + MessageAuthenticationCode* mac; + }; + +} + +#endif |