verify_context.hpp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //
  2. // ssl/verify_context.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_SSL_VERIFY_CONTEXT_HPP
  11. #define BOOST_ASIO_SSL_VERIFY_CONTEXT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if !defined(BOOST_ASIO_ENABLE_OLD_SSL)
  17. # include <boost/asio/detail/noncopyable.hpp>
  18. # include <boost/asio/ssl/detail/openssl_types.hpp>
  19. #endif // !defined(BOOST_ASIO_ENABLE_OLD_SSL)
  20. #include <boost/asio/detail/push_options.hpp>
  21. namespace boost {
  22. namespace asio {
  23. namespace ssl {
  24. #if !defined(BOOST_ASIO_ENABLE_OLD_SSL)
  25. /// A simple wrapper around the X509_STORE_CTX type, used during verification of
  26. /// a peer certificate.
  27. /**
  28. * @note The verify_context does not own the underlying X509_STORE_CTX object.
  29. */
  30. class verify_context
  31. : private noncopyable
  32. {
  33. public:
  34. /// The native handle type of the verification context.
  35. typedef X509_STORE_CTX* native_handle_type;
  36. /// Constructor.
  37. explicit verify_context(native_handle_type handle)
  38. : handle_(handle)
  39. {
  40. }
  41. /// Get the underlying implementation in the native type.
  42. /**
  43. * This function may be used to obtain the underlying implementation of the
  44. * context. This is intended to allow access to context functionality that is
  45. * not otherwise provided.
  46. */
  47. native_handle_type native_handle()
  48. {
  49. return handle_;
  50. }
  51. private:
  52. // The underlying native implementation.
  53. native_handle_type handle_;
  54. };
  55. #endif // defined(BOOST_ASIO_ENABLE_OLD_SSL)
  56. } // namespace ssl
  57. } // namespace asio
  58. } // namespace boost
  59. #include <boost/asio/detail/pop_options.hpp>
  60. #endif // BOOST_ASIO_SSL_VERIFY_CONTEXT_HPP