OpenSSL Common Usage
OpenSSL is a powerful Linux command for managing certificates. These are some common operations I frequently use.
Generate RSA Key Pair
This command generates a 2048 bits private key.
openssl genrsa -out example.key 2048
Verify private and public ke...
tech.mrleong.net