nghttpx: Enable SCT with OpenSSL 1.1.0
This commit is contained in:
parent
4aab15999d
commit
1a07fb000b
|
@ -720,16 +720,18 @@ SSL_CTX *create_ssl_context(const char *private_key_file, const char *cert_file,
|
||||||
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
|
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
|
||||||
|
|
||||||
#if !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L
|
#if !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L
|
||||||
|
// SSL_extension_supported(TLS_EXT_SIGNED_CERTIFICATE_TIMESTAMP)
|
||||||
|
// returns 1, which means OpenSSL internally handles it. But
|
||||||
|
// OpenSSL handles signed_certificate_timestamp extension specially,
|
||||||
|
// and it lets custom handler to process the extension.
|
||||||
if (!sct_data.empty() &&
|
if (!sct_data.empty() &&
|
||||||
SSL_extension_supported(TLS_EXT_SIGNED_CERTIFICATE_TIMESTAMP) == 0) {
|
SSL_CTX_add_server_custom_ext(
|
||||||
if (SSL_CTX_add_server_custom_ext(
|
|
||||||
ssl_ctx, TLS_EXT_SIGNED_CERTIFICATE_TIMESTAMP, sct_add_cb,
|
ssl_ctx, TLS_EXT_SIGNED_CERTIFICATE_TIMESTAMP, sct_add_cb,
|
||||||
sct_free_cb, nullptr, sct_parse_cb, nullptr) != 1) {
|
sct_free_cb, nullptr, sct_parse_cb, nullptr) != 1) {
|
||||||
LOG(FATAL) << "SSL_CTX_add_server_custom_ext failed: "
|
LOG(FATAL) << "SSL_CTX_add_server_custom_ext failed: "
|
||||||
<< ERR_error_string(ERR_get_error(), nullptr);
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
||||||
DIE();
|
DIE();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#endif // !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L
|
#endif // !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L
|
||||||
|
|
||||||
auto tls_ctx_data = new TLSContextData();
|
auto tls_ctx_data = new TLSContextData();
|
||||||
|
|
Loading…
Reference in New Issue