Skip to content

Commit

Permalink
ticket#822 creates root CA subject DN when renewing with empty params…
Browse files Browse the repository at this point in the history
….name in orig profile
  • Loading branch information
ladycfu committed Feb 12, 2015
1 parent cdad249 commit 98b2407
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public void setDefaultCertInfo(IRequest req) throws EProfileException {
info.set(X509CertInfo.KEY,
new CertificateX509Key(X509Key.parse(new DerValue(dummykey))));
info.set(X509CertInfo.SUBJECT,
new CertificateSubjectName(issuerName));
new CertificateSubjectName(new X500Name("CN=Dummy Subject Name")));
info.set(X509CertInfo.VALIDITY,
new CertificateValidity(new Date(), new Date()));
info.set(X509CertInfo.ALGORITHM_ID,
Expand Down

0 comments on commit 98b2407

Please sign in to comment.