How I would configure encryption standard for FIX connection in Quickfixn.
I can see that for example for Quickfixj there is a dedicated setting - CipherSuites
, which
Controls which particular SSL cipher suites are enabled for secure connection
So in FIX config file I can have the following and have encryption standard applied:
SocketConnectHost=***IP host***
SocketConnectPort=***Port***
SocketUseSSL=Y
**CipherSuites=TLS_RSA_WITH_AES_128_CBC_SHA**
EnabledProtocols=TLSv1.1
SocketKeyStore=*** path to certificate ***
SocketKeyStorePassword=****
Now I need something similar for quickfixn, but it seems SSL configuration doesn't offer similar setting.
So how could I configure FIX connection to use a given encryption standard.