comparison src/event/ngx_event_openssl.h @ 6548:8a34e92d8ab5

SSL: made it possible to iterate though all certificates. A pointer to a previously configured certificate now stored in a certificate. This makes it possible to iterate though all certificates configured in the SSL context. This is now used to configure OCSP stapling for all certificates, and in ngx_ssl_session_id_context(). As SSL_CTX_use_certificate() frees previously loaded certificate of the same type, and we have no way to find out if it's the case, X509_free() calls are now posponed till ngx_ssl_cleanup_ctx(). Note that in OpenSSL 1.0.2+ this can be done without storing things in exdata using the SSL_CTX_set_current_cert() and SSL_CTX_get0_certificate() functions. These are not yet available in all supported versions though, so it's easier to continue to use exdata for now.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 19 May 2016 14:46:32 +0300
parents 3b77efe05b92
children 51e1f047d15d
comparison
equal deleted inserted replaced
6547:e222a97d46c1 6548:8a34e92d8ab5
225 extern int ngx_ssl_connection_index; 225 extern int ngx_ssl_connection_index;
226 extern int ngx_ssl_server_conf_index; 226 extern int ngx_ssl_server_conf_index;
227 extern int ngx_ssl_session_cache_index; 227 extern int ngx_ssl_session_cache_index;
228 extern int ngx_ssl_session_ticket_keys_index; 228 extern int ngx_ssl_session_ticket_keys_index;
229 extern int ngx_ssl_certificate_index; 229 extern int ngx_ssl_certificate_index;
230 extern int ngx_ssl_next_certificate_index;
230 extern int ngx_ssl_stapling_index; 231 extern int ngx_ssl_stapling_index;
231 232
232 233
233 #endif /* _NGX_EVENT_OPENSSL_H_INCLUDED_ */ 234 #endif /* _NGX_EVENT_OPENSSL_H_INCLUDED_ */