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