Homebrew, OpenSSL and PowerShell
Posted on May 6, 2020 (Last modified on July 11, 2024) • 1 min read • 64 wordsOn Mac, PowerShell really, really wants to specifically use OpenSSL version 1.0.
Unfortunately, homebrew switched to OpenSSL version 1.1 in v2.2, because OpenSSL 1.0 is end-of-life.
This fixes it (for now at least):
brew uninstall openssl --ignore-dependencies
brew uninstall openssl --ignore-dependencies
brew install https://github.com/tebelorg/Tump/releases/download/v1.0.0/openssl.rb
… but breaks basically any SSL-using software. So decide for yourself, I stopped using this hack.
References: