1make the private key: 2 openssl genrsa -out test_priv.pem 2048 3 4make the public key according to private key: 5 openssl rsa -pubout -in test_priv.pem -out test_pub.pem
1make the private key: 2 openssl genrsa -out test_priv.pem 2048 3 4make the public key according to private key: 5 openssl rsa -pubout -in test_priv.pem -out test_pub.pem