Pasar rutas para openssl

This commit is contained in:
El Mau 2022-03-31 21:59:16 -06:00
parent b9e1c3332a
commit 4ecaf7126d
1 changed files with 3 additions and 7 deletions

View File

@ -119,13 +119,9 @@ def base_datos():
def _get_cert(data):
key = b''
pem = b''
cer = data['path_cer'].read_bytes()
if data['path_enc'].is_file():
key = data['path_enc'].read_bytes()
elif data['path_pem'].is_file():
pem = data['path_pem'].read_bytes()
key = data['path_enc']
pem = data['path_pem']
cer = data['path_cer']
cert = SATCertificate(cer, key, pem)
return cert