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.RSAhasload_keyfunction which returns anRSAobject which hassave_pub_keymethod.