aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-12-11 04:54:43 +0000
committerlloyd <[email protected]>2006-12-11 04:54:43 +0000
commit9f4dff92910edb390d70aa928decacba8a8900f6 (patch)
treeca16052eba54258c7fce93b934120c9d1258a6a2 /misc
parent72e6db5a12433fffa84265b4cf9abcd860852f04 (diff)
Comment out some problematic code so at least the Python extension can build
Diffstat (limited to 'misc')
-rw-r--r--misc/python/src/pk.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/python/src/pk.cpp b/misc/python/src/pk.cpp
index 5d912868d..d2c83feae 100644
--- a/misc/python/src/pk.cpp
+++ b/misc/python/src/pk.cpp
@@ -98,6 +98,7 @@ void export_pk()
python::class_<RSA_PrivateKey, python::bases<RSA_PublicKey, PK_Decrypting_Key> >
("RSA_PrivateKey", python::init<u32bit>());
+ /*
python::class_<PK_Encryptor, boost::noncopyable>
("PK_Encryptor", python::no_init)
.def("__init__",
@@ -105,6 +106,7 @@ void export_pk()
python::with_custodian_and_ward_postcall<0, 1>()))
.def("max_input", &PK_Encryptor::maximum_input_size)
.def("encrypt", encrypt_string);
+ */
/*
python::class_<PK_Decryptor, boost::noncopyable>