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
@peculiar/x509 version: 1.12.3
The parsing of X509 subject names in Name.fromString does not correctly handle attribute values with length 1:
> import { Name } from '@peculiar/x509'; > new Name('CN=t,OU=x,O=y').toJSON() [ { CN: [ 't,OU=x' ] }, { O: [ '' ] } ] > new Name('CN=t,OU=x,O=y,C=z').toJSON() [ { CN: [ 't,OU=x' ] }, { O: [ 'y,C=z' ] } ]
This results for example in incorrect information in CSRs generated by Pkcs10CertificateRequestGenerator.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@peculiar/x509 version: 1.12.3
The parsing of X509 subject names in Name.fromString does not correctly handle attribute values with length 1:
This results for example in incorrect information in CSRs generated by Pkcs10CertificateRequestGenerator.
The text was updated successfully, but these errors were encountered: