In my mac version 10.15.5, openssl is still pointing to LibreSSL 2.8.3. I have used the below commands, but no luck
homebrew install libressl
After installation when I ran the version command it is still showing LibreSSL 2.8.3 Also below command is throwing error -
brew link --force openssl
Warning: Refusing to link macOS provided/shadowed software: openssl@1.1
If you need to have openssl@1.1 first in your PATH run:
echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc
For compilers to find openssl@1.1 you may need to set:
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"