/* Copyright 2008-2009, Felspar Co Ltd. http://fost.3.felspar.com/ Distributed under 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 BOOST_PYTHON_MODULE( _crypto ) { using namespace boost::python; fostlib::python_string_registration(); def( "md5", fostlib::md5 ); def( "sha1", fostlib::sha1 ); def( "sha1_hmac", fostlib::sha1_hmac ); }