2007-01-10 17:11:43 +01:00
|
|
|
// 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)
|
|
|
|
|
2013-08-27 18:04:19 +02:00
|
|
|
#include <libtorrent/sha1_hash.hpp>
|
2007-01-10 17:11:43 +01:00
|
|
|
#include <boost/python.hpp>
|
|
|
|
|
2013-08-27 18:04:19 +02:00
|
|
|
void bind_sha1_hash()
|
2007-01-10 17:11:43 +01:00
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
2013-08-27 18:04:19 +02:00
|
|
|
class_<sha1_hash>("sha1_hash")
|
2007-01-10 17:11:43 +01:00
|
|
|
.def(self == self)
|
|
|
|
.def(self != self)
|
|
|
|
.def(self < self)
|
|
|
|
.def(self_ns::str(self))
|
2010-02-01 00:16:56 +01:00
|
|
|
.def(init<char const*>())
|
2013-08-27 18:04:19 +02:00
|
|
|
.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[])
|
2007-01-10 17:11:43 +01:00
|
|
|
;
|
2013-08-27 18:04:19 +02:00
|
|
|
|
|
|
|
scope().attr("big_number") = scope().attr("sha1_hash");
|
2013-08-29 07:41:50 +02:00
|
|
|
scope().attr("peer_id") = scope().attr("sha1_hash");
|
2007-01-10 17:11:43 +01:00
|
|
|
}
|
|
|
|
|