mirror of
https://github.com/openssl/openssl.git
synced 2026-01-18 17:11:31 +01:00
Just run the quicapitest (which attempts to create quic connections) while using a config that specifies recordpadding, which quic should ignore Reviewed-by: Saša Nedvědický <sashan@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/28992)
28 lines
527 B
INI
28 lines
527 B
INI
openssl_conf = openssl_init
|
|
|
|
# Comment out the next line to ignore configuration errors
|
|
config_diagnostics = 1
|
|
|
|
[openssl_init]
|
|
providers = provider_sect
|
|
ssl_conf = ssl_section
|
|
|
|
[ssl_section]
|
|
system_default = system_default_section
|
|
|
|
# Set block and record padding
|
|
# Note: QUIC objects should ignore this, as they
|
|
# always pad during datagram encryption
|
|
[system_default_section]
|
|
RecordPadding = 128,256
|
|
|
|
[provider_sect]
|
|
default = default_sect
|
|
legacy = legacy_sect
|
|
|
|
[default_sect]
|
|
activate = true
|
|
|
|
[legacy_sect]
|
|
activate = false
|