Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
1ce9efc6
Commit
1ce9efc6
authored
Oct 15, 2021
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Set SCT data when built with boringssl
parent
7055501e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
16 deletions
+32
-16
src/shrpx_tls.cc
src/shrpx_tls.cc
+32
-16
No files found.
src/shrpx_tls.cc
View file @
1ce9efc6
...
...
@@ -1145,6 +1145,12 @@ SSL_CTX *create_ssl_context(const char *private_key_file, const char *cert_file,
SSL_CTX_set_alpn_select_cb
(
ssl_ctx
,
alpn_select_proto_cb
,
nullptr
);
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
auto
tls_ctx_data
=
new
TLSContextData
();
tls_ctx_data
->
cert_file
=
cert_file
;
tls_ctx_data
->
sct_data
=
sct_data
;
SSL_CTX_set_app_data
(
ssl_ctx
,
tls_ctx_data
);
#if !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L && \
!defined(OPENSSL_IS_BORINGSSL)
// SSL_extension_supported(TLSEXT_TYPE_signed_certificate_timestamp)
...
...
@@ -1177,8 +1183,16 @@ SSL_CTX *create_ssl_context(const char *private_key_file, const char *cert_file,
}
# endif // !OPENSSL_1_1_1_API
}
#endif // !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L &&
// !defined(OPENSSL_IS_BORINGSSL)
#elif defined(OPENSSL_IS_BORINGSSL)
if
(
!
tls_ctx_data
->
sct_data
.
empty
()
&&
SSL_CTX_set_signed_cert_timestamp_list
(
ssl_ctx
,
tls_ctx_data
->
sct_data
.
data
(),
tls_ctx_data
->
sct_data
.
size
())
!=
1
)
{
LOG
(
FATAL
)
<<
"SSL_CTX_set_signed_cert_timestamp_list failed: "
<<
ERR_error_string
(
ERR_get_error
(),
nullptr
);
DIE
();
}
#endif // defined(OPENSSL_IS_BORINGSSL)
#if OPENSSL_1_1_1_API && !defined(OPENSSL_IS_BORINGSSL)
if
(
SSL_CTX_set_max_early_data
(
ssl_ctx
,
tlsconf
.
max_early_data
)
!=
1
)
{
...
...
@@ -1192,12 +1206,6 @@ SSL_CTX *create_ssl_context(const char *private_key_file, const char *cert_file,
SSL_CTX_set_psk_server_callback
(
ssl_ctx
,
psk_server_cb
);
#endif // !LIBRESSL_NO_PSK
auto
tls_ctx_data
=
new
TLSContextData
();
tls_ctx_data
->
cert_file
=
cert_file
;
tls_ctx_data
->
sct_data
=
sct_data
;
SSL_CTX_set_app_data
(
ssl_ctx
,
tls_ctx_data
);
return
ssl_ctx
;
}
...
...
@@ -1553,6 +1561,12 @@ SSL_CTX *create_quic_ssl_context(const char *private_key_file,
SSL_CTX_set_alpn_select_cb
(
ssl_ctx
,
quic_alpn_select_proto_cb
,
nullptr
);
# endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
auto
tls_ctx_data
=
new
TLSContextData
();
tls_ctx_data
->
cert_file
=
cert_file
;
tls_ctx_data
->
sct_data
=
sct_data
;
SSL_CTX_set_app_data
(
ssl_ctx
,
tls_ctx_data
);
# if !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L && \
!defined(OPENSSL_IS_BORINGSSL)
// SSL_extension_supported(TLSEXT_TYPE_signed_certificate_timestamp)
...
...
@@ -1585,8 +1599,16 @@ SSL_CTX *create_quic_ssl_context(const char *private_key_file,
}
# endif // !OPENSSL_1_1_1_API
}
# endif // !LIBRESSL_IN_USE && OPENSSL_VERSION_NUMBER >= 0x10002000L &&
// !defined(OPENSSL_IS_BORINGSSL)
# elif defined(OPENSSL_IS_BORINGSSL)
if
(
!
tls_ctx_data
->
sct_data
.
empty
()
&&
SSL_CTX_set_signed_cert_timestamp_list
(
ssl_ctx
,
tls_ctx_data
->
sct_data
.
data
(),
tls_ctx_data
->
sct_data
.
size
())
!=
1
)
{
LOG
(
FATAL
)
<<
"SSL_CTX_set_signed_cert_timestamp_list failed: "
<<
ERR_error_string
(
ERR_get_error
(),
nullptr
);
DIE
();
}
# endif // defined(OPENSSL_IS_BORINGSSL)
# if OPENSSL_1_1_1_API && !defined(OPENSSL_IS_BORINGSSL)
auto
&
quicconf
=
config
->
quic
;
...
...
@@ -1606,12 +1628,6 @@ SSL_CTX *create_quic_ssl_context(const char *private_key_file,
SSL_CTX_set_quic_method
(
ssl_ctx
,
&
quic_method
);
auto
tls_ctx_data
=
new
TLSContextData
();
tls_ctx_data
->
cert_file
=
cert_file
;
tls_ctx_data
->
sct_data
=
sct_data
;
SSL_CTX_set_app_data
(
ssl_ctx
,
tls_ctx_data
);
return
ssl_ctx
;
}
#endif // ENABLE_HTTP3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment