You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.
when set CertificateEngine = DefaultWindows, every thing fine,
and when set CertificateEngine = BouncyCastle, browser shows ERR_CERT_AUTHORITY_INVALID!!!
In BCCertificateMaker.cs source ,
var issuerDn = new X509Name(issuerName);
I change it to
var issuerDn = new X509Name(true, issuerName);
Then everything is fine.
ps: my root.pfx is created by openssl, and used in filldercore is worked, so I think maybe it's a bug in BCCertificateMaker
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
when set CertificateEngine = DefaultWindows, every thing fine,
and when set CertificateEngine = BouncyCastle, browser shows ERR_CERT_AUTHORITY_INVALID!!!
In BCCertificateMaker.cs source ,
var issuerDn = new X509Name(issuerName);
I change it to
var issuerDn = new X509Name(true, issuerName);
Then everything is fine.
ps: my root.pfx is created by openssl, and used in filldercore is worked, so I think maybe it's a bug in BCCertificateMaker
The text was updated successfully, but these errors were encountered: