Revize 87c56935
Přidáno uživatelem Stanislav Král před téměř 4 roky(ů)
src/services/cryptography.py | ||
---|---|---|
205 | 205 |
params = ["x509", "-req", "-in", "-", "-CA", "-", "-CAkey", "-", "-CAcreateserial", "-days", str(days), |
206 | 206 |
"-set_serial", str(sn)] |
207 | 207 |
|
208 |
# TODO delete created -.srl file |
|
209 |
|
|
210 | 208 |
with TemporaryFile("extensions.conf", extensions) as ext_path: |
211 | 209 |
# add the passphrase even when None is passed. Otherwise when running tests with pytest some tests freeze |
212 | 210 |
# waiting for the passphrase to be typed in |
Také k dispozici: Unified diff
Re #8575 - Fixed an issue where serial number was not passed when creating certificates
Removed a TODO that has already been fixed