user3423017
user3423017

Reputation:

How to generate PEM encoded Certificate Request File

Actually I want to Masterpass payment gateway to my a wordpress website when I am doing the I am using this website
This gives the following massage for CSR file

enter image description here

I have not installed IIS on my system I'm using wamp server.

I don't know how to generate this CSR file can anybody help me complete this task.

Thanks

Upvotes: 1

Views: 1116

Answers (1)

Quentin
Quentin

Reputation: 944304

If you can't use the tool Mastercard provide, then the biggest problem is figuring out that almost everybody refers to a certificate request file as a CSR and using that as a search term turns up lots of HOWTOs.

I use OpenSSL as it is ubiquitous and free.

openssl req -new -key key.pem -out request.csr

Upvotes: 1

Related Questions