mbedtls

Cryptographic & SSL/TLS library for secure communications

brewmacoslinux
Try with needOr install directly
Source

About

Cryptographic & SSL/TLS library

Commands

mbedtls

Examples

Generate an RSA private key$ openssl genrsa -out private.key 2048
Create a self-signed certificate using mbedtls$ openssl req -new -x509 -key private.key -out cert.pem -days 365
Verify SSL/TLS certificate chain$ openssl verify -CAfile ca.pem cert.pem