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
OpenSSL v1.1.1 is end-of-life this year, 2023-09-11.
I've upgraded a server I'm working with to Ubuntu Jammy (22.04, their LTS) with Ruby 3.2.0 and Rails 6.1 and it uses OpenSSL v3 by default.
This breaks the library since there are major backwards-incompatible changes. Here's the error I get:
OpenSSL::PKey::PKeyError (pkeys are immutable on OpenSSL 3.0):
Looking at the failing line of code, it's HealthCards::Key.from_jwk(jwk), or https://github.com/dvci/health_cards/blob/main/lib/health_cards/key.rb#L23
HealthCards::Key.from_jwk(jwk)
Please add support for OpenSSL v3.
The text was updated successfully, but these errors were encountered:
I went ahead and got a PR out for this: #108
Please leave feedback there :)
Sorry, something went wrong.
No branches or pull requests
OpenSSL v1.1.1 is end-of-life this year, 2023-09-11.
I've upgraded a server I'm working with to Ubuntu Jammy (22.04, their LTS) with Ruby 3.2.0 and Rails 6.1 and it uses OpenSSL v3 by default.
This breaks the library since there are major backwards-incompatible changes. Here's the error I get:
Looking at the failing line of code, it's
HealthCards::Key.from_jwk(jwk)
, or https://github.com/dvci/health_cards/blob/main/lib/health_cards/key.rb#L23Please add support for OpenSSL v3.
The text was updated successfully, but these errors were encountered: