In /etc/make.conf, I would like to set openssl(1), security/libressl or security/nss over security/gnutls, and know whether security/libressl can coexist with Openssl.
In make.conf, this is what I have in mind
Libressl has a reputation for being better than Openssl, but not very many ports work with it, and setting it as default with
in make.conf (as suggested by installing net/openntpd) breaks many ports. If I don't set Libressl as default, as the port suggests, will the existence of it break other ports that rely on Openssl?
If it's possible, how would I set Openssl as default, fall back to NSS, yet switch to Libressl when available.
If I unset GNUTLS, or NSS
, I believe this will be insecure for ports that can't use other protocols, or that openssl or libressl can't cover.
If I understand correctly, Openssl and Libressl don't cover as many TLS protocols as NSS or GNUTLS.
I would like to prioritize, Libressl, over Openssl, then NSS, if all is possible.
In make.conf, this is what I have in mind
Code:
OPTIONS_SET=OPENSSL
OPTIONS_SET+=NSS
Code:
DEFAULT_VERSIONS+=ssl=libressl
If it's possible, how would I set Openssl as default, fall back to NSS, yet switch to Libressl when available.
If I unset GNUTLS, or NSS
Code:
OPTIONS_UNSET=GNUTLS
If I understand correctly, Openssl and Libressl don't cover as many TLS protocols as NSS or GNUTLS.
I would like to prioritize, Libressl, over Openssl, then NSS, if all is possible.