Skip to content

Commit a7c3110

Browse files
authored
Merge pull request #3 from Keyfactor/dev-67519-sans-fix
Fixed issue with SANs not being read.
2 parents b980ddd + 63cf63c commit a7c3110

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
v1.0.1
2+
- Fixed issue with SANs not being read correctly.
3+
14
v1.0
2-
-Initial Release.
5+
- Initial Release.

cscglobal-caplugin/RequestManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ private List<SubjectAlternativeName> GetSubjectAlternativeNames(EnrollmentProduc
230230
var subjectNameList = new List<SubjectAlternativeName>();
231231
var methodType = productInfo.ProductParameters["Domain Control Validation Method"];
232232

233-
foreach (var v in sans["dns"])
233+
foreach (var v in sans["dnsname"])
234234
{
235235
var domainName = v;
236236
var san = new SubjectAlternativeName();

0 commit comments

Comments
 (0)