Can someone tell me how can I extract a public keu in .pem format from a .cer file ? I'm trying to configure webservice over https with nusoap.
Tks, ED
Can someone tell me how can I extract a public keu in .pem format from a .cer file ? I'm trying to configure webservice over https with nusoap.
Tks, ED
openssl x509 -inform der -in <certificate> -noout -pubkey
Should print out the public key.