I was looking at the this link for help regarding QuickFIX/J configuration.
How would I enable TLS 1.2 as the enabled protocol? Is it:
[SESSION]
EnabledProtocols=Tls1.2
What if I wanted to specify ciphersuites? For example, to only use ciphersuites TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
and TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
. Is it:
[SESSION]
CipherSuites=TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Can you put commas?
There is no example of how to specify this in documenation.