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
In Ruby, EC signatures are verified with dsa_verify_asn1. However, in this JRuby implementation, such method is missing - instead, EC signature verification is done via the verify method inherited from PKey.
dsa_verify_asn1
verify
PKey
This discrepancy causes problems at least with the ruby-jwt gem's EC functionality, which tries to use dsa_verify_asn1.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In Ruby, EC signatures are verified with
dsa_verify_asn1
. However, in this JRuby implementation, such method is missing - instead, EC signature verification is done via theverify
method inherited fromPKey
.This discrepancy causes problems at least with the ruby-jwt gem's EC functionality, which tries to use
dsa_verify_asn1
.The text was updated successfully, but these errors were encountered: