Skip to content

Commit db730d5

Browse files
authored
Merge pull request #34 from Keyfactor/hotfix
Hotfix
2 parents 516d230 + b0819c4 commit db730d5

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@
99
* Add support for enrolling for client certs
1010
* Option to filter sync by division ID
1111
* Option to provide division ID for enrollment
12-
* Add support for secure_email_* SMIME product types
12+
* Add support for secure_email_* SMIME product types
13+
14+
### 2.1.1
15+
* Add configuration flag to support adding client auth EKU to ssl cert requests
16+
* NOTE: This is a temporary feature which is planned for loss of support by Digicert in May 2026
17+
* For smime certs, use profile type defined on the product as the default if not supplied, rather than just defaulting to 'strict'
18+
* Hotfix for data type conversion

digicert-certcentral-caplugin/CertCentralCAPlugin.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ public async Task<EnrollmentResult> Enroll(string csr, string subject, Dictionar
297297
if (typeOfCert.Equals("ssl") && Convert.ToBoolean(productInfo.ProductParameters[CertCentralConstants.Config.INCLUDE_CLIENT_AUTH]))
298298
{
299299
orderRequest.Certificate.ProfileOption = "server_client_auth_eku";
300+
_logger.LogWarning($"{CertCentralConstants.Config.INCLUDE_CLIENT_AUTH}: Ability to include client auth EKU in SSL certs is currently planned to cease in May 2026. Make sure any workflows that depend on this feature are updated before then to avoid interruptions.");
300301
}
301302

302303
// Current gateway core leaves it up to the integration to determine if it is a renewal or a reissue

0 commit comments

Comments
 (0)