# possibility to default to a SIGNING_ALGORITHM for a given profile

This commit is contained in:
Hossein Shafagh 2020-01-15 16:19:48 -08:00
parent a65c4c94a0
commit 1ed6ae539d
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"]],
},
}
# 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