aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/extconf.rb
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2020-06-30 14:42:07 +0900
committerGitHub <noreply@github.com>2020-06-30 14:42:07 +0900
commitb362c0a704df489452ec48379801eca5db848f78 (patch)
treee9a8572fc991f6ea3aa6b92c55b784d636bb9afa /ext/openssl/extconf.rb
parent2ab1f6f0207176d7d0cca70fe18e40e14808d6fd (diff)
parent0317e2fc028be40a7d64d0e4337d3e21539613ce (diff)
downloadruby-openssl-b362c0a704df489452ec48379801eca5db848f78.tar.gz
Merge pull request #371 from rhenium/ky/hmac-evp
hmac: migrate from the low-level HMAC API to the EVP API
Diffstat (limited to 'ext/openssl/extconf.rb')
-rw-r--r--ext/openssl/extconf.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb
index 693e55cd..063498a7 100644
--- a/ext/openssl/extconf.rb
+++ b/ext/openssl/extconf.rb
@@ -141,8 +141,7 @@ 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("HMAC_CTX_new")
-have_func("HMAC_CTX_free")
+have_func("EVP_MD_CTX_pkey_ctx")
have_func("X509_STORE_get_ex_data")
have_func("X509_STORE_set_ex_data")
have_func("X509_STORE_get_ex_new_index")