]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/uuid/name_generator_sha1.hpp
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / boost / boost / uuid / name_generator_sha1.hpp
CommitLineData
b32b8144
FG
1// Boost name_generator_sha1.hpp header file ------------------------//
2
3// Copyright 2010 Andy Tompkins.
4// Copyright 2017 James E. King, III
5
6// Distributed under the Boost Software License, Version 1.0. (See
7// accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9
10#ifndef BOOST_UUID_NAME_GENERATOR_SHA1_HPP
11#define BOOST_UUID_NAME_GENERATOR_SHA1_HPP
12
13#include <boost/uuid/basic_name_generator.hpp>
14#include <boost/uuid/detail/sha1.hpp>
15
16namespace boost {
17namespace uuids {
18
19//! \brief SHA1 hashing is the default method defined in RFC 4122 to be
20//! used when backwards compatibility is not necessary.
21typedef basic_name_generator<detail::sha1> name_generator_sha1;
22
23} // uuids
24} // boost
25
26#endif // BOOST_UUID_NAME_GENERATOR_SHA1_HPP