| 78 | #endif |
| 79 | |
| 80 | std::string tlsErrorString(int errnum) |
| 81 | { |
| 82 | std::array<char, 1024> buffer{}; |
| 83 | mbedtls_strerror(errnum, buffer.data(), buffer.size()); |
| 84 | return buffer.data(); |
| 85 | } |
| 86 | |
| 87 | bool loadSystemCertificates([[maybe_unused]] mbedtls_x509_crt* x509crt, [[maybe_unused]] mbedtls_x509_crl* x509crl) |
| 88 | { |
no outgoing calls
no test coverage detected