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
The handling of RDNs, esp. in rdn-from-dn is too trivial. rdn-from-dn breaks on backslash-escaped characters. Example:
rdn-from-dn
cn=Acme\, Baltimore,c=United States... Expected: (:cn "Acme, Baltimore") Got: (:cn "Acme")
cn=Acme\, Baltimore,c=United States...
(:cn "Acme, Baltimore")
(:cn "Acme")
and can't handle multi-valued RDNs. Example:
uid=123+gid=456,o=acme Expoected: ((:uid 123) (:gid 456)) Got: (:uid "123+gid=456")
uid=123+gid=456,o=acme
((:uid 123) (:gid 456))
(:uid "123+gid=456")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The handling of RDNs, esp. in
rdn-from-dn
is too trivial.rdn-from-dn
breaks on backslash-escapedcharacters. Example:
cn=Acme\, Baltimore,c=United States...
Expected:
(:cn "Acme, Baltimore")
Got:
(:cn "Acme")
and can't handle multi-valued RDNs. Example:
uid=123+gid=456,o=acme
Expoected:
((:uid 123) (:gid 456))
Got:
(:uid "123+gid=456")
The text was updated successfully, but these errors were encountered: