-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
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
create_extension('subjectKeyIdentifier', 'hash') uses the wrong key id #173
Comments
@caldwell I found a fix based on https://gist.github.com/sstelfox/11063125#file-key_fingerprints-rb-L24
To test you could run with c-ruby and jruby
puts are identicals on c-ruby but different on jruby. |
Thanks for the detailed report, we used ^^ for tests. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
parseSubjectKeyIdentifier()
(in X509ExtensionFactory.java), if thevaluex
passed in is'hash'
then it fetches the issuer's public key and uses that instead of the subject's. This is incorrect.The text was updated successfully, but these errors were encountered: