// Copyright Daniel Wallin 2006. Use, modification and distribution is // subject to the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include void bind_sha1_hash() { using namespace boost::python; using namespace libtorrent; class_("sha1_hash") .def(self == self) .def(self != self) .def(self < self) .def(self_ns::str(self)) .def(init()) .def("clear", &sha1_hash::clear) .def("is_all_zeros", &sha1_hash::is_all_zeros) .def("to_string", &sha1_hash::to_string) // .def("__getitem__", &sha1_hash::opreator[]) ; scope().attr("big_number") = scope().attr("sha1_hash"); scope().attr("peer_id") = scope().attr("peer_id"); }