aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/extconf.rb
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2021-04-05 00:39:04 +0900
committerKazuki Yamaguchi <k@rhe.jp>2021-04-05 00:42:06 +0900
commit81027b7463b02d3a4ea50f1a4c7a0ae1e6ea623b (patch)
tree5d743199926de165aee6ce5a130f795d24b147eb /ext/openssl/extconf.rb
parent1800a8d5ebafa47f14a604a3f12a3a6397b0b4ad (diff)
downloadruby-openssl-81027b7463b02d3a4ea50f1a4c7a0ae1e6ea623b.tar.gz
pkey: remove unused ossl_generate_cb_2() helper functionky/pkey-refactor-generate
The previous series of commits re-implemented key generation with the low level API with the EVP API. The BN_GENCB-based callback function is no longer used.
Diffstat (limited to 'ext/openssl/extconf.rb')
-rw-r--r--ext/openssl/extconf.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb
index bd7c5770..5cb28f30 100644
--- a/ext/openssl/extconf.rb
+++ b/ext/openssl/extconf.rb
@@ -130,9 +130,6 @@ engines.each { |name|
if !have_struct_member("SSL", "ctx", "openssl/ssl.h") || is_libressl
$defs.push("-DHAVE_OPAQUE_OPENSSL")
end
-have_func("BN_GENCB_new")
-have_func("BN_GENCB_free")
-have_func("BN_GENCB_get_arg")
have_func("EVP_MD_CTX_new")
have_func("EVP_MD_CTX_free")
have_func("EVP_MD_CTX_pkey_ctx")