xref: /src/crypto/openssl/test/default-recordpadding.cnf (revision f25b8c9fb4f58cf61adb47d7570abe7caa6d385d)
1openssl_conf = openssl_init
2
3# Comment out the next line to ignore configuration errors
4config_diagnostics = 1
5
6[openssl_init]
7providers = provider_sect
8ssl_conf = ssl_section
9
10[ssl_section]
11system_default = system_default_section
12
13# Set block and record padding
14# Note: QUIC objects should ignore this, as they
15# always pad during datagram encryption
16[system_default_section]
17RecordPadding = 128,256
18
19[provider_sect]
20default = default_sect
21legacy  = legacy_sect
22
23[default_sect]
24activate = true
25
26[legacy_sect]
27activate = false
28