is it possible to extract public key from private key in pem format in python, with something like M2Crypto? I want to same thing happen like when you use this command:
openssl rsa -in mykey.pem -pubout > mykey.pub
is it possible to extract public key from private key in pem format in python, with something like M2Crypto? I want to same thing happen like when you use this command:
openssl rsa -in mykey.pem -pubout > mykey.pub
Copyright © 2021 Jogjafile Inc.
M2Crypto.RSA
hasload_key
function which returns anRSA
object which hassave_pub_key
method.