|
||||
File indexing completed on 2025-01-30 10:02:08
0001 // Boost name_generator_sha1.hpp header file ------------------------// 0002 0003 // Copyright 2010 Andy Tompkins. 0004 // Copyright 2017 James E. King III 0005 0006 // Distributed under the Boost Software License, Version 1.0. (See 0007 // accompanying file LICENSE_1_0.txt or copy at 0008 // https://www.boost.org/LICENSE_1_0.txt) 0009 0010 #ifndef BOOST_UUID_NAME_GENERATOR_SHA1_HPP 0011 #define BOOST_UUID_NAME_GENERATOR_SHA1_HPP 0012 0013 #include <boost/uuid/basic_name_generator.hpp> 0014 #include <boost/uuid/detail/sha1.hpp> 0015 0016 namespace boost { 0017 namespace uuids { 0018 0019 //! \brief SHA1 hashing is the default method defined in RFC 4122 to be 0020 //! used when backwards compatibility is not necessary. 0021 typedef basic_name_generator<detail::sha1> name_generator_sha1; 0022 0023 } // uuids 0024 } // boost 0025 0026 #endif // BOOST_UUID_NAME_GENERATOR_SHA1_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |