name_generator_md5.hpp 752 B

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