bignum.hpp 449 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <openssl/bn.h>
  3. namespace nkg::resource_traits::openssl {
  4. struct bignum {
  5. using handle_t = BIGNUM*;
  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. BN_free(handle);
  13. }
  14. };
  15. }