• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Boost name_generator_md5.hpp header file  ------------------------//
2 
3 // Copyright 2017 James E. King III
4 
5 // Distributed under the Boost Software License, Version 1.0. (See
6 // accompanying file LICENSE_1_0.txt or copy at
7 //  https://www.boost.org/LICENSE_1_0.txt)
8 
9 #ifndef BOOST_UUID_NAME_GENERATOR_MD5_HPP
10 #define BOOST_UUID_NAME_GENERATOR_MD5_HPP
11 
12 #include <boost/uuid/basic_name_generator.hpp>
13 #include <boost/uuid/detail/md5.hpp>
14 
15 namespace boost {
16 namespace uuids {
17 
18 //! \brief MD5 hashing is defined in RFC 4122 however it is not commonly
19 //!        used; the definition is provided for backwards compatibility.
20 typedef basic_name_generator<detail::md5> name_generator_md5;
21 
22 } // uuids
23 } // boost
24 
25 #endif // BOOST_UUID_NAME_GENERATOR_MD5_HPP
26