diff options
Diffstat (limited to 'misc/python/src/core.cpp')
-rw-r--r-- | misc/python/src/core.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/python/src/core.cpp b/misc/python/src/core.cpp index 3ede4f51c..0f30f470e 100644 --- a/misc/python/src/core.cpp +++ b/misc/python/src/core.cpp @@ -10,6 +10,7 @@ using namespace Botan; namespace python = boost::python; extern void export_block_ciphers(); +extern void export_stream_ciphers(); extern void export_hash_functions(); extern void export_macs(); extern void export_filters(); @@ -32,6 +33,7 @@ BOOST_PYTHON_MODULE(_botan) .value("decryption", DECRYPTION); export_block_ciphers(); + export_stream_ciphers(); export_hash_functions(); export_macs(); export_filters(); |