aboutsummaryrefslogtreecommitdiffstats
path: root/src/s2k.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /src/s2k.cpp
Initial checkin1.5.6
Diffstat (limited to 'src/s2k.cpp')
-rw-r--r--src/s2k.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/s2k.cpp b/src/s2k.cpp
new file mode 100644
index 000000000..aa8beb212
--- /dev/null
+++ b/src/s2k.cpp
@@ -0,0 +1,53 @@
+/*************************************************
+* S2K Source File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#include <botan/s2k.h>
+#include <botan/rng.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(u32bit length)
+ {
+ salt.create(length);
+ Global_RNG::randomize(salt, length);
+ }
+
+}