We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go/src/crypto/x509/pkix/pkix.go
Line 226 in 0b2ad1d
If I create an X509 certificate, and then pull out the subject DN, it looks like this:
C = XX, ST = Confusion, L = Somewhere, OU = first, OU = a002, OU = third, OU = b004, O = example, CN = chunkbox
Note that there are multiple values for OrganizationalUnit, but they are separate RDNs.
When I print what is returned from Caddy, which uses the go PKIX module, it looks like this:
CN=chunkbox,OU=first+OU=a002+OU=third+OU=b004,O=example,L=Somewhere,ST=Confusion,C=XX
The subject DN from the certificate is not equivalent to the subject DN that I get back from the PKIX module.
The text was updated successfully, but these errors were encountered:
Duplicate of #27401
Sorry, something went wrong.
@seankhliao I realized that after filing this one. That ticket is from back in 2018. Are there plans to implement some kind of fix?
No branches or pull requests
go/src/crypto/x509/pkix/pkix.go
Line 226 in 0b2ad1d
If I create an X509 certificate, and then pull out the subject DN, it looks like this:
C = XX, ST = Confusion, L = Somewhere, OU = first, OU = a002, OU = third, OU = b004, O = example, CN = chunkbox
Note that there are multiple values for OrganizationalUnit, but they are separate RDNs.
When I print what is returned from Caddy, which uses the go PKIX module, it looks like this:
CN=chunkbox,OU=first+OU=a002+OU=third+OU=b004,O=example,L=Somewhere,ST=Confusion,C=XX
The subject DN from the certificate is not equivalent to the subject DN that I get back from the PKIX module.
The text was updated successfully, but these errors were encountered: