1
0
mirror of synced 2025-07-27 23:41:48 +03:00

Add optional private key password to SSLServer ctor (#1205)

This commit is contained in:
Sebastien Blanchet
2022-02-27 11:16:15 -08:00
committed by GitHub
parent d73395e1dc
commit 8191fd8e6c
4 changed files with 32 additions and 2 deletions

View File

@ -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',