If you aren't able (or willing) to set up OpenSSL on your windows machine, there are various GUI wrappers around the toolset that you might be able to use instead. XCA is an open-source wrapper around the OpenSSL toolset which allows you to create keys, csrs and certificates via a GUI and stores all of the generated items in a database file.
First, you need to download XCA, which is an open-source wrapper around the OpenSSL toolset from:
http://sourceforge.net/projects/xca/
Step by Step Guide
- Install XCA and run it.
- Create a new Database,
- Name it something sensible
- Save it somewhere appropriate.
This proprietary database is useful for the XCA tool only and helps you store your keys, csrs, and certificates, the database file is not used in any part of the process with Betfair.
Equivalent Open SSL Command - Create a public/private RSA key pair using OpenSSL
openssl genrsa -out client-2048.key 2048 |
- Create a public/private RSA key pair using XCA:
Equivalent Open SSL Command - Create a certificate signing request (CSR).
openssl req -new -config openssl.cnf -key client-2048.key -out client-2048.csr |
- Select the Certificate signing requests tab and click New Request
- Select the CA template and click the Apply Extensions button.
- Please ensure that the Signature algorithm SHA 512 is selected.
- Click on the Subject tab and enter the name etc.
- The key that you generated in the first step must be selected (if the key doesn't appear, check the "Used keys tool" box)
- Click on the Extensions tab
- Ensure that Certification Authority is selected as the type.
- Click OK.
Equivalent Open SSL Command - Self-sign the certificate request to create a certificate
openssl x509 -req -days 365 -in client-2048.csr -signkey client-2048.key -out client-2048.crt -extfile openssl.cnf -extensions ssl_client |
We will now create and sign a certificate from the first two steps:
- Click the Certificates Tab and click New Certificate
- Click on the Subject tab and enter the name etc.
- The key that you generated in the first step must be selected (if the key doesn't appear, check the "Used keys tool" box)
- Click on the Source tab and select the parameters shown below:
- You should make sure that your CSR is selected but that “Copy extensions from the request” is unticked and that you have selected the [default] CA and pressed the “Apply extensions” button.
You can then press OK to create the self-signed certificate (see the result below)
Next, we need to export the certificate for use in our application.
- Export the Certificate
You should upload the .crt file exported to the My Security page on Betfair.com to allow this certificate access to your account.