QuickFIX/J 密码套件

问题描述 投票:0回答:1

我需要连接到需要这些配置的一方:

enter image description here

以文本方式列出密码套件:

  • TLS_ECDHE_RSA_AES_256_GCM_SHA384
  • TLS_ECDHE_RSA_AES_256_CBC_SHA384
  • TLS_ECDHE_RSA_AES_128_CBC_SHA256

这些 QFJ

Secure Communication Options
可以吗?

SocketUseSSL=Y
SocketKeyStore=path_to_my_jks_file
SocketKeyStorePassword=my_password
EnabledProtocols=TLSv1.2
CipherSuites=TLS_ECDHE_RSA_AES_256_GCM_SHA384

非常感谢

quickfixj
1个回答
0
投票

QFJ 使用此处定义的名称:https://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider

例如您要使用的套件应该是

TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384

© www.soinside.com 2019 - 2024. All rights reserved.