TheSSL_get_peer_certificatefunction is deprecated as of 2023. Update your applications to replace this function with theSSL_get1_peer_certificatefunction. For more information, see theOpenSSLwebsite. This function returns the peer certificate that was received when theSecure Sockets Layer (SSL)sessio...
/* Deprecated in 3.0.0 */ # ifndef OPENSSL_NO_DEPRECATED_3_0 # define SSL_get_peer_certificate SSL_get1_peer_certificate # endif # endif Solution might be to compile with macro OPENSSL_NO_DEPRECATED_3_0 set to true Alternatively, I suppose this will not be a problem once the alpha ...
make: *** [mini_ssl.o] Error 1 make failed, exit code 2 Gem files will remain installed in /Users/wlipa/.gem/ruby/3.1/gems/puma-5.6.2 for inspection. Results logged to /Users/wlipa/.gem/ruby/3.1/extensions/arm64-darwin-21/3.1.0/puma-5.6.2/gem_make.out /opt/local/lib/ruby3.1...
TheSSL_get_peer_certificatefunction is deprecated as of 2023. Update your applications to replace this function with theSSL_get1_peer_certificatefunction. For more information, see theOpenSSLwebsite. This function returns the peer certificate that was received when theSecure Sockets Layer (SSL)sessio...