bio_chain.hpp 455 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <openssl/bio.h>
  3. namespace nkg::resource_traits::openssl {
  4. struct bio_chain {
  5. using handle_t = BIO*;
  6. static constexpr handle_t invalid_value = nullptr;
  7. [[nodiscard]]
  8. static bool is_valid(const handle_t& handle) noexcept {
  9. return handle != invalid_value;
  10. }
  11. static void release(const handle_t& handle) noexcept {
  12. BIO_free_all(handle);
  13. }
  14. };
  15. }