openssl@3.5

Cryptography and SSL/TLS toolkit for secure communications

brewmacoslinux
Try with needOr install directly
Source

About

Cryptography and SSL/TLS Toolkit

Commands

openssl

Examples

Generate a new private key$ openssl genrsa -out private.key 2048
Create a self-signed certificate$ openssl req -new -x509 -key private.key -out cert.pem -days 365
Check SSL certificate details$ openssl x509 -in cert.pem -text -noout