Merge branch 'master' into ilabun/fix-docker-compose-tests

This commit is contained in:
Hossein Shafagh 2020-01-17 17:17:06 -08:00 committed by GitHub
commit 3b393dec6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -171,6 +171,9 @@ def map_cis_fields(options, csr):
"units": [options["organizational_unit"]], "units": [options["organizational_unit"]],
}, },
} }
# possibility to default to a SIGNING_ALGORITHM for a given profile
if current_app.config.get("DIGICERT_CIS_SIGNING_ALGORITHMS", {}).get(options['authority'].name):
data["signature_hash"] = current_app.config.get("DIGICERT_CIS_SIGNING_ALGORITHMS", {}).get(options['authority'].name)
return data return data