aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-23 06:22:04 +0000
committerlloyd <[email protected]>2006-08-23 06:22:04 +0000
commit5ed6ee611a65e3390e9e60660335b1d21cefbb64 (patch)
tree444beadb844eb1ab5762fa38c0aaf4cf201cee0c
parent8cd2c9a4b9cf69a97e758d1e6416d2efbbf7028a (diff)
Merge the export_pipe() and export_filter() functions, some other small
cleanups.
-rw-r--r--misc/python/src/core.cpp2
-rw-r--r--misc/python/src/filter.cpp62
2 files changed, 31 insertions, 33 deletions
diff --git a/misc/python/src/core.cpp b/misc/python/src/core.cpp
index 806df8d89..fa35bd07b 100644
--- a/misc/python/src/core.cpp
+++ b/misc/python/src/core.cpp
@@ -11,7 +11,6 @@ using namespace Botan;
namespace python = boost::python;
extern void export_filters();
-extern void export_pipe();
extern void export_x509();
BOOST_PYTHON_MODULE(_botan)
@@ -39,6 +38,5 @@ BOOST_PYTHON_MODULE(_botan)
.value("decryption", DECRYPTION);
export_filters();
- export_pipe();
export_x509();
}
diff --git a/misc/python/src/filter.cpp b/misc/python/src/filter.cpp
index d8b0cab35..bf3632fab 100644
--- a/misc/python/src/filter.cpp
+++ b/misc/python/src/filter.cpp
@@ -10,34 +10,37 @@ using namespace boost::python;
#include <botan/lookup.h>
using namespace Botan;
-Filter* return_or_raise(Filter* f, const std::string& name)
+Filter* return_or_raise(Filter* filter, const std::string& name)
{
- if(f)
- return f;
- throw Invalid_Argument("Filter " + name + " not found");
+ if(filter)
+ return filter;
+ throw Invalid_Argument("Filter " + name + " could not be found");
}
Filter* make_filter1(const std::string& name)
{
- if(have_hash(name))
- return new Hash_Filter(name);
- else if(name == "Hex_Encoder")
- return new Hex_Encoder;
- else if(name == "Hex_Decoder")
- return new Hex_Decoder;
-
- throw Invalid_Argument("Filter " + name + " not found");
+ Filter* filter = 0;
+
+ if(have_hash(name)) filter = new Hash_Filter(name);
+ else if(name == "Hex_Encoder") filter = new Hex_Encoder;
+ else if(name == "Hex_Decoder") filter = new Hex_Decoder;
+ else if(name == "Base64_Encoder") filter = new Base64_Encoder;
+ else if(name == "Base64_Decoder") filter = new Base64_Decoder;
+
+ return return_or_raise(filter, name);
}
Filter* make_filter2(const std::string& name,
const SymmetricKey& key)
{
+ Filter* filter = 0;
+
if(have_mac(name))
- return new MAC_Filter(name, key);
+ filter = new MAC_Filter(name, key);
else if(have_stream_cipher(name))
- return new StreamCipher_Filter(name, key);
+ filter = new StreamCipher_Filter(name, key);
- throw Invalid_Argument("Filter " + name + " not found");
+ return return_or_raise(filter, name);
}
// FIXME: add new wrapper for Keyed_Filter here
@@ -56,21 +59,6 @@ Filter* make_filter4(const std::string& name,
return return_or_raise(get_cipher(name, key, iv, direction), name);
}
-void export_filters()
- {
- class_<Filter, std::auto_ptr<Filter>, boost::noncopyable>
- ("__Internal_FilterObj", no_init);
-
- def("make_filter", make_filter1,
- return_value_policy<manage_new_object>());
- def("make_filter", make_filter2,
- return_value_policy<manage_new_object>());
- def("make_filter", make_filter3,
- return_value_policy<manage_new_object>());
- def("make_filter", make_filter4,
- return_value_policy<manage_new_object>());
- }
-
void append_filter(Pipe& pipe, std::auto_ptr<Filter> filter)
{
pipe.append(filter.get());
@@ -85,8 +73,20 @@ void prepend_filter(Pipe& pipe, std::auto_ptr<Filter> filter)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(rallas_ovls, read_all_as_string, 0, 1)
-void export_pipe()
+void export_filters()
{
+ class_<Filter, std::auto_ptr<Filter>, boost::noncopyable>
+ ("__Internal_FilterObj", no_init);
+
+ def("make_filter", make_filter1,
+ return_value_policy<manage_new_object>());
+ def("make_filter", make_filter2,
+ return_value_policy<manage_new_object>());
+ def("make_filter", make_filter3,
+ return_value_policy<manage_new_object>());
+ def("make_filter", make_filter4,
+ return_value_policy<manage_new_object>());
+
void (Pipe::*pipe_write_str)(const std::string&) = &Pipe::write;
void (Pipe::*pipe_process_str)(const std::string&) = &Pipe::process_msg;