aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-09-02 04:04:21 +0000
committerlloyd <[email protected]>2006-09-02 04:04:21 +0000
commitccd7463ba965c1594975f73430069c44e94bc88f (patch)
tree8f135aeb7e29aaa73d87b4b383fb7cd7ec66f4bc /misc
parent66f811e3807811b915a1b4209b2fc0f6e8b0890c (diff)
Allow for implementing block ciphers in Python
Diffstat (limited to 'misc')
-rw-r--r--misc/python/src/algos.cpp67
-rw-r--r--misc/python/src/block.cpp167
2 files changed, 170 insertions, 64 deletions
diff --git a/misc/python/src/algos.cpp b/misc/python/src/algos.cpp
index ed00c99d9..cb1255ccf 100644
--- a/misc/python/src/algos.cpp
+++ b/misc/python/src/algos.cpp
@@ -9,59 +9,6 @@ using namespace Botan;
#include <boost/python.hpp>
namespace python = boost::python;
-/* Encrypt or decrypt */
-std::string process(const std::string& in, BlockCipher* cipher,
- void (BlockCipher::* proc)(const byte[], byte[]) const)
- {
- if(in.size() != cipher->BLOCK_SIZE)
- throw Invalid_Argument("Input for cipher " + cipher->name() +
- " must be " + to_string(cipher->BLOCK_SIZE) +
- " bytes");
-
- const byte* in_data = (const byte*)in.data();
-
- SecureVector<byte> out(cipher->BLOCK_SIZE);
- (cipher->*proc)(in_data, out);
-
- return std::string((const char*)out.begin(), out.size());
- }
-
-class Py_BlockCipher
- {
- public:
- u32bit block_size() const { return cipher->BLOCK_SIZE; }
- u32bit keylength_min() const { return cipher->MINIMUM_KEYLENGTH; }
- u32bit keylength_max() const { return cipher->MAXIMUM_KEYLENGTH; }
- u32bit keylength_mod() const { return cipher->KEYLENGTH_MULTIPLE; }
-
- bool valid_keylength(u32bit kl) const
- {
- return cipher->valid_keylength(kl);
- }
-
- std::string name() const { return cipher->name(); }
- void clear() throw() { cipher->clear(); }
-
- std::string encrypt(const std::string& in) const
- {
- return process(in, cipher, &BlockCipher::encrypt);
- }
- std::string decrypt(const std::string& in) const
- {
- return process(in, cipher, &BlockCipher::decrypt);
- }
-
- void set_key(const OctetString& key) { cipher->set_key(key); }
-
- Py_BlockCipher(const std::string& name)
- {
- cipher = get_block_cipher(name);
- }
- ~Py_BlockCipher() { delete cipher; }
- private:
- BlockCipher* cipher;
- };
-
class Py_StreamCipher
{
public:
@@ -152,19 +99,11 @@ class Py_MAC
MessageAuthenticationCode* mac;
};
+void export_block_ciphers();
+
void export_basic_algos()
{
- python::class_<Py_BlockCipher>("BlockCipher", python::init<std::string>())
- .add_property("block_size", &Py_BlockCipher::block_size)
- .add_property("keylength_min", &Py_BlockCipher::keylength_min)
- .add_property("keylength_max", &Py_BlockCipher::keylength_max)
- .add_property("keylength_mod", &Py_BlockCipher::keylength_mod)
- .add_property("name", &Py_BlockCipher::name)
- .def("clear", &Py_BlockCipher::clear)
- .def("valid_keylength", &Py_BlockCipher::valid_keylength)
- .def("set_key", &Py_BlockCipher::set_key)
- .def("encrypt", &Py_BlockCipher::encrypt)
- .def("decrypt", &Py_BlockCipher::decrypt);
+ export_block_ciphers();
python::class_<Py_StreamCipher>("StreamCipher", python::init<std::string>())
.add_property("keylength_min", &Py_StreamCipher::keylength_min)
diff --git a/misc/python/src/block.cpp b/misc/python/src/block.cpp
new file mode 100644
index 000000000..1b950772c
--- /dev/null
+++ b/misc/python/src/block.cpp
@@ -0,0 +1,167 @@
+/*************************************************
+* Boost.Python module definition *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#include <botan/botan.h>
+using namespace Botan;
+
+#include <boost/python.hpp>
+namespace python = boost::python;
+
+class Bad_Size : public Exception
+ {
+ public:
+ Bad_Size(const std::string& name, u32bit got, u32bit expected) :
+ Exception("Bad size encountered in " + name + "; got " +
+ to_string(got) + " bytes, expected " + to_string(expected))
+ {}
+ };
+
+class Py_BlockCipher : public BlockCipher
+ {
+ public:
+ virtual std::string enc_str(const std::string&) const = 0;
+ virtual std::string dec_str(const std::string&) const = 0;
+ virtual void set_key_obj(const OctetString&) = 0;
+
+ void enc(const byte in[], byte out[]) const
+ {
+ std::string out_str = enc_str(
+ std::string((const char*)in, BLOCK_SIZE)
+ );
+ if(out_str.size() != BLOCK_SIZE)
+ throw Bad_Size(name(), out_str.size(), BLOCK_SIZE);
+ std::memcpy(out, out_str.data(), BLOCK_SIZE);
+ }
+
+ void dec(const byte in[], byte out[]) const
+ {
+ std::string out_str = dec_str(
+ std::string((const char*)in, BLOCK_SIZE)
+ );
+ if(out_str.size() != BLOCK_SIZE)
+ throw Bad_Size(name(), out_str.size(), BLOCK_SIZE);
+ std::memcpy(out, out_str.data(), BLOCK_SIZE);
+ }
+
+ void key(const byte key[], u32bit len)
+ {
+ set_key_obj(OctetString(key, len));
+ }
+
+ Py_BlockCipher(u32bit bs, u32bit kmin, u32bit kmax, u32bit kmod) :
+ BlockCipher(bs, kmin, kmax, kmod)
+ {
+ }
+ };
+
+std::string encrypt_string(BlockCipher* cipher, const std::string& in)
+ {
+ if(in.size() != cipher->BLOCK_SIZE)
+ throw Bad_Size(cipher->name(), in.size(), cipher->BLOCK_SIZE);
+
+ SecureVector<byte> out(cipher->BLOCK_SIZE);
+ cipher->encrypt((const byte*)in.data(), out);
+ return std::string((const char*)out.begin(), out.size());
+ }
+
+std::string decrypt_string(BlockCipher* cipher, const std::string& in)
+ {
+ if(in.size() != cipher->BLOCK_SIZE)
+ throw Bad_Size(cipher->name(), in.size(), cipher->BLOCK_SIZE);
+
+ SecureVector<byte> out(cipher->BLOCK_SIZE);
+ cipher->decrypt((const byte*)in.data(), out);
+ return std::string((const char*)out.begin(), out.size());
+ }
+
+template<typename T>
+python::object get_owner(T* me)
+ {
+ return python::object(
+ python::handle<>(
+ python::borrowed(python::detail::wrapper_base_::get_owner(*me))));
+ }
+
+class Wrapped_Block_Cipher : public BlockCipher
+ {
+ public:
+ void enc(const byte in[], byte out[]) const { cipher->encrypt(in, out); }
+ void dec(const byte in[], byte out[]) const { cipher->decrypt(in, out); }
+ void key(const byte key[], u32bit len) { cipher->set_key(key, len); }
+ std::string name() const { return cipher->name(); }
+ BlockCipher* clone() const { return cipher->clone(); }
+
+ Wrapped_Block_Cipher(python::object py_obj, BlockCipher* c) :
+ BlockCipher(c->BLOCK_SIZE, c->MINIMUM_KEYLENGTH,
+ c->MAXIMUM_KEYLENGTH, c->KEYLENGTH_MULTIPLE),
+ obj(py_obj), cipher(c) {}
+ private:
+ python::object obj;
+ BlockCipher* cipher;
+ };
+
+class Py_BlockCipher_Wrapper : public Py_BlockCipher,
+ public python::wrapper<Py_BlockCipher>
+ {
+ public:
+ BlockCipher* clone() const
+ {
+ python::object self = get_owner(this);
+ python::object py_clone = self.attr("__class__")();
+ BlockCipher* bc = python::extract<BlockCipher*>(py_clone);
+ return new Wrapped_Block_Cipher(py_clone, bc);
+ }
+
+ std::string name() const
+ {
+ return this->get_override("name")();
+ }
+
+ std::string enc_str(const std::string& in) const
+ {
+ return this->get_override("encrypt")(in);
+ }
+
+ std::string dec_str(const std::string& in) const
+ {
+ return this->get_override("decrypt")(in);
+ }
+
+ void set_key_obj(const OctetString& key)
+ {
+ this->get_override("set_key")(key);
+ }
+
+ Py_BlockCipher_Wrapper(u32bit bs, u32bit kmin,
+ u32bit kmax, u32bit kmod) :
+ Py_BlockCipher(bs, kmin, kmax, kmod) {}
+ };
+
+void export_block_ciphers()
+ {
+ void (BlockCipher::*set_key_ptr)(const OctetString&) =
+ &BlockCipher::set_key;
+
+ python::class_<BlockCipher, boost::noncopyable>
+ ("BlockCipher", python::no_init)
+ .def("__init__", python::make_constructor(get_block_cipher))
+ .def_readonly("block_size", &BlockCipher::BLOCK_SIZE)
+ .def_readonly("keylength_min", &BlockCipher::MINIMUM_KEYLENGTH)
+ .def_readonly("keylength_max", &BlockCipher::MAXIMUM_KEYLENGTH)
+ .def_readonly("keylength_mod", &BlockCipher::KEYLENGTH_MULTIPLE)
+ .def("valid_keylength", &BlockCipher::valid_keylength)
+ .def("name", &BlockCipher::name)
+ .def("set_key", set_key_ptr)
+ .def("encrypt", encrypt_string)
+ .def("decrypt", decrypt_string);
+
+ python::class_<Py_BlockCipher_Wrapper, python::bases<BlockCipher>,
+ boost::noncopyable>
+ ("BlockCipherImpl", python::init<u32bit, u32bit, u32bit, u32bit>())
+ .def("name", python::pure_virtual(&Py_BlockCipher::name))
+ .def("encrypt", python::pure_virtual(&Py_BlockCipher::enc_str))
+ .def("decrypt", python::pure_virtual(&Py_BlockCipher::dec_str))
+ .def("set_key", python::pure_virtual(&Py_BlockCipher::set_key_obj));
+ }