]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/uuid/name_generator_md5.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / uuid / name_generator_md5.hpp
CommitLineData
b32b8144
FG
1// Boost name_generator_md5.hpp header file ------------------------//
2
11fdf7f2 3// Copyright 2017 James E. King III
b32b8144
FG
4
5// Distributed under the Boost Software License, Version 1.0. (See
6// accompanying file LICENSE_1_0.txt or copy at
92f5a8d4 7// https://www.boost.org/LICENSE_1_0.txt)
b32b8144
FG
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
15namespace boost {
16namespace 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.
20typedef basic_name_generator<detail::md5> name_generator_md5;
21
22} // uuids
23} // boost
24
25#endif // BOOST_UUID_NAME_GENERATOR_MD5_HPP