The unified diff between revisions [f72e48c8..] and [d09daf9f..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'misc/python/src/pk.cpp'
#
#
# patch "misc/python/src/pk.cpp"
# from [2fe597d3617538be1f7c2b447be091db87c7b1ee]
# to [ec7d76829ef9058c837d3ddbcecc4930d3973ca7]
#
============================================================
--- misc/python/src/pk.cpp 2fe597d3617538be1f7c2b447be091db87c7b1ee
+++ misc/python/src/pk.cpp ec7d76829ef9058c837d3ddbcecc4930d3973ca7
@@ -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>