mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-06-01 17:17:38 +00:00
Add optional private key password to SSLServer ctor (#1205)
This commit is contained in:
parent
d73395e1dc
commit
8191fd8e6c
4 changed files with 32 additions and 2 deletions
|
@ -33,6 +33,13 @@ cert2_pem = custom_target(
|
|||
command: [openssl, 'req', '-x509', '-config', test_conf, '-key', '@INPUT@', '-sha256', '-days', '3650', '-nodes', '-out', '@OUTPUT@', '-extensions', 'SAN']
|
||||
)
|
||||
|
||||
cert_encrypted_pem = custom_target(
|
||||
'cert_encrypted_pem',
|
||||
input: key_encrypted_pem,
|
||||
output: 'cert_encrypted.pem',
|
||||
command: [openssl, 'req', '-x509', '-config', test_conf, '-key', '@INPUT@', '-sha256', '-days', '3650', '-nodes', '-out', '@OUTPUT@', '-extensions', 'SAN']
|
||||
)
|
||||
|
||||
rootca_key_pem = custom_target(
|
||||
'rootca_key_pem',
|
||||
output: 'rootCA.key.pem',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue