aboutsummaryrefslogtreecommitdiffstats
path: root/src/get_pbe.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/get_pbe.cpp
Initial checkin1.5.6
Diffstat (limited to 'src/get_pbe.cpp')
-rw-r--r--src/get_pbe.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/get_pbe.cpp b/src/get_pbe.cpp
new file mode 100644
index 000000000..a0dee425c
--- /dev/null
+++ b/src/get_pbe.cpp
@@ -0,0 +1,71 @@
+/*************************************************
+* PBE Retrieval Source File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#include <botan/oids.h>
+#include <botan/lookup.h>
+#include <botan/pbe_pkcs.h>
+#include <botan/parsing.h>
+
+namespace Botan {
+
+/*************************************************
+* Get an encryption PBE, set new parameters *
+*************************************************/
+PBE* get_pbe(const std::string& pbe_name)
+ {
+ std::vector<std::string> algo_name;
+ algo_name = parse_algorithm_name(pbe_name);
+
+ if(algo_name.size() != 3)
+ throw Invalid_Algorithm_Name(pbe_name);
+
+ const std::string pbe = algo_name[0];
+ const std::string digest = algo_name[1];
+ const std::string cipher = algo_name[2];
+
+ PBE* pbe_obj = 0;
+
+ if(pbe == "PBE-PKCS5v15")
+ pbe_obj = new PBE_PKCS5v15(digest, cipher, ENCRYPTION);
+ else if(pbe == "PBE-PKCS5v20")
+ pbe_obj = new PBE_PKCS5v20(digest, cipher);
+
+ if(!pbe_obj)
+ throw Algorithm_Not_Found(pbe_name);
+
+ pbe_obj->new_params();
+
+ return pbe_obj;
+ }
+
+/*************************************************
+* Get a decryption PBE, decode parameters *
+*************************************************/
+PBE* get_pbe(const OID& pbe_oid, DataSource& params)
+ {
+ std::vector<std::string> algo_name;
+ algo_name = parse_algorithm_name(OIDS::lookup(pbe_oid));
+
+ if(algo_name.size() < 1)
+ throw Invalid_Algorithm_Name(pbe_oid.as_string());
+ const std::string pbe_algo = algo_name[0];
+
+ if(pbe_algo == "PBE-PKCS5v15")
+ {
+ if(algo_name.size() != 3)
+ throw Invalid_Algorithm_Name(pbe_oid.as_string());
+ const std::string digest = algo_name[1];
+ const std::string cipher = algo_name[2];
+ PBE* pbe = new PBE_PKCS5v15(digest, cipher, DECRYPTION);
+ pbe->decode_params(params);
+ return pbe;
+ }
+ else if(pbe_algo == "PBE-PKCS5v20")
+ return new PBE_PKCS5v20(params);
+
+ throw Algorithm_Not_Found(pbe_oid.as_string());
+ }
+
+}