Overview
FIXEdge Admin REST API is API is intended to be a pragmatic tool for on-the-fly tuning of the most common FIXEdge properties.
...
- Create CA root key
openssl genrsa -out rootCA.key 2048 - Create root certificate
openssl req -x509 -new -key rootCA.key -days 10000 -out rootCA.crt
Answer the questions that openssl asks. The duration of certificate will be 10000 days. - Generate certificate signed with the created CA
openssl genrsa -out AdminRESTAPI.key 2048 - Create certificate signing request
openssl req -new -key AdminRESTAPI.key -out AdminRESTAPI.csr - Sign the certificate with the root certificate
openssl x509 -req -in AdminRESTAPI.csr -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out AdminRESTAPI.crt -days 5000
Documentation
http://corp-web.b2bits.com/fixedge/AdminRESTAPI/FIXEdge Administrative REST API and SDK Documentation