From 3a5b32f44a95b989e39273527fc924ad3d32465e Mon Sep 17 00:00:00 2001 From: zyp Date: Mon, 8 May 2006 12:54:40 +0000 Subject: [project @ zyp-20060508125440-a3cc6ea65de180a0] [project @ 23] Seperated from disccat to a standalone project. --- hash_wrapper.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hash_wrapper.cpp (limited to 'hash_wrapper.cpp') diff --git a/hash_wrapper.cpp b/hash_wrapper.cpp new file mode 100644 index 0000000..a4173b9 --- /dev/null +++ b/hash_wrapper.cpp @@ -0,0 +1,14 @@ +#include "hash.h" + +#include +using namespace boost::python; + +BOOST_PYTHON_MODULE(_hash) +{ + class_("Hash") + .def("update", &Hash::update) + .def("crc32", &Hash::crc32) + .def("ed2k", &Hash::ed2k) + .def("md5", &Hash::md5) + .def("sha1", &Hash::sha1); +} -- cgit v1.2.3