hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.16k stars 4.43k forks source link

Add helper for loading OpenSSL providers #13178

Closed chrisroberts closed 1 year ago

chrisroberts commented 1 year ago

On OpenSSL 3, engines have been deprecated being replaced by providers. The Ruby openssl library supported loading specific engines, but there is no replacement currently using providers. The winrm communicator specifically relies on a MD4 which OpenSSL has marked as legacy and no longer loads by default.

The extension included loads the legacy provider as well as the default provider. The legacy provider includes MD4, thus allowing winrm to function again.