mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-25 03:28:12 +02:00
34 lines
816 B
C++
34 lines
816 B
C++
//
|
|
// Copyright (c) 2021 Kasper Laudrup (laudrup at stacktrace dot dk)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BOOST_WINTLS_DETAIL_DECRYPT_BUFFERS_HPP
|
|
#define BOOST_WINTLS_DETAIL_DECRYPT_BUFFERS_HPP
|
|
|
|
#include <boost/wintls/detail/sspi_buffer_sequence.hpp>
|
|
|
|
namespace boost {
|
|
namespace wintls {
|
|
namespace detail {
|
|
|
|
class decrypt_buffers : public sspi_buffer_sequence<4> {
|
|
public:
|
|
decrypt_buffers()
|
|
: sspi_buffer_sequence(std::array<sspi_buffer, 4> {
|
|
SECBUFFER_DATA,
|
|
SECBUFFER_EMPTY,
|
|
SECBUFFER_EMPTY,
|
|
SECBUFFER_EMPTY
|
|
}) {
|
|
}
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace wintls
|
|
} // namespace boost
|
|
|
|
#endif // BOOST_WINTLS_DETAIL_DECRYPT_BUFFERS_HPP
|