- Back to Home »
- OpenSSL , uCommerce , Umbraco »
Posted by : Jebastin
Thursday, 13 November 2014
Open a command prompt and go to the bin directory under the installation directory.
For the public certificate type: “openssl req –new –key private-key.pem –x509 –days 365 –out public-cert.pem”
Now it will ask you to enter some information, you can just skip them by pressing [Enter].
Reference: http://docs.ucommerce.net/ucommerce/v6/payment-providers/setup-paypal-standard-website-payments-as-a-payment-method.html
To create the private certificate type: “openssl genrsa –out private-key.pem 1024” and press [Enter].
Now it will ask you to enter some information, you can just skip them by pressing [Enter].
Now we need to create the p12 file. Type the following in the prompt:
“openssl pkcs12 –export –in public-cert.pem –inkey private-key.pem –out
my_pkcs12.p12” followed by [Enter].