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
There seems to be an issue with multivalue RDNs.
let dn = rfc2253.parse('C=CA,O=ACME Co,email=[email protected]+CN=b37e5a5c'); console.log(dn.get(2).get('CN'));
This will return undefined
But if I use console.log(dn.get(2).get('+CN')); I get the CN value. Why is the "+" required? It is supposed to be consumed.
The text was updated successfully, but these errors were encountered:
This is currently a limitation of the parser. The project hasn't been touched in a while.
Sorry, something went wrong.
No branches or pull requests
There seems to be an issue with multivalue RDNs.
let dn = rfc2253.parse('C=CA,O=ACME Co,email=[email protected]+CN=b37e5a5c');
console.log(dn.get(2).get('CN'));
This will return
undefined
But if I use console.log(dn.get(2).get('+CN')); I get the CN value. Why is the "+" required? It is supposed to be consumed.
The text was updated successfully, but these errors were encountered: