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::PKey::DH.generate
The OpenSSL::PKey::DH class lacks the .generate class method. It should simply call .new with the key-size and optional "generator" number.
OpenSSL::PKey::DH
.generate
.new
OpenSSL::PKey::DH.generate(1024)
# => #<OpenSSL::PKey::DH:...>
NoMethodError (undefined method `generate' for OpenSSL::PKey::DH:Class)
jruby 9.3.2.0 (2.6.8) 2021-12-01 0b8223f905 OpenJDK 64-Bit Server VM 11.0.15+10 on 11.0.15+10 +jit [linux-x86_64]
jruby-openssl (default: 0.11.0 java)
The text was updated successfully, but these errors were encountered:
adcd031
Sorry, something went wrong.
No branches or pull requests
The
OpenSSL::PKey::DH
class lacks the.generate
class method. It should simply call.new
with the key-size and optional "generator" number.Steps To Reproduce
Expected Result
# => #<OpenSSL::PKey::DH:...>
Actual Result
Version
jruby 9.3.2.0 (2.6.8) 2021-12-01 0b8223f905 OpenJDK 64-Bit Server VM 11.0.15+10 on 11.0.15+10 +jit [linux-x86_64]
jruby-openssl (default: 0.11.0 java)
The text was updated successfully, but these errors were encountered: