blob: 649b48a880a6af49030f6548e5d9d3dce31618d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*************************************************
* 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;
extern void export_basic_algos();
extern void export_filters();
extern void export_pk();
extern void export_x509();
BOOST_PYTHON_MODULE(_botan)
{
python::class_<LibraryInitializer>("LibraryInitializer")
.def(python::init< python::optional<std::string> >());
python::class_<OctetString>("OctetString")
.def(python::init< python::optional<std::string> >())
.def(python::init< u32bit >())
.def("__str__", &OctetString::as_string)
.def("__len__", &OctetString::length);
python::enum_<Cipher_Dir>("cipher_dir")
.value("encryption", ENCRYPTION)
.value("decryption", DECRYPTION);
export_basic_algos();
export_filters();
export_pk();
export_x509();
}
|