// // 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 namespace boost { namespace wintls { namespace detail { class decrypt_buffers : public sspi_buffer_sequence<4> { public: decrypt_buffers() : sspi_buffer_sequence(std::array { SECBUFFER_DATA, SECBUFFER_EMPTY, SECBUFFER_EMPTY, SECBUFFER_EMPTY }) { } }; } // namespace detail } // namespace wintls } // namespace boost #endif // BOOST_WINTLS_DETAIL_DECRYPT_BUFFERS_HPP