// SPDX-License-Identifier: Apache-2.0 // Copyright 2024 Pionix GmbH and Contributors to EVerest #include #include #include #include using evse_security::X509Handle_ptr; using evse_security::X509HandleOpenSSL; using evse_security::X509Wrapper; namespace openssl::conversions { X509Handle_ptr to_X509Handle_ptr(x509_st* cert) { X509Handle_ptr ptr; if (X509_up_ref(cert) == 1) { ptr = std::make_unique(cert); } return ptr; } X509Wrapper to_X509Wrapper(x509_st* cert) { return X509Wrapper(to_X509Handle_ptr(cert)); } } // namespace openssl::conversions