gpt4 book ai didi

java - QuickFIX/J CA 证书验证

转载 作者:搜寻专家 更新时间:2023-11-01 02:59:41 33 4
gpt4 key购买 nike

我有一个使用 QuickFIX/J 编写的应用程序来连接彭博服务器。最近 Bloomberg 在他们的服务器中添加了 CA 证书验证,并且他们为握手提供了额外的 CA 证书文件。

我的应用程序使用 SSL 连接,当从 Bloomberg 端禁用 CA 证书验证时,应用程序成功连接到服务器并获取消息。启用 CA 验证时握手失败。

以下是我尝试过的步骤。

  1. 以前我使用 ImportKey Java 类来添加证书和 key 。我将其更改为添加多个证书。如果需要我可以发布Java 类。
  2. 当我使用 openssl s_client 连接到服务器时,它成功连接到服务器。

在应用层有什么需要改变的吗?配置?或者在 Java keystore 级别有什么可做的吗?

下面添加连接时出现错误信息:

20160823-06:04:15, FIX.4.4:XXXX->XXXX, error> (Disconnecting: Socket exception (/XXXX.XXXX.XXX.XX:20237): javax.net.ssl.SSLHandshakeException: SSL handshake failed.) Successfully logged out for sessionId : FIX.4.4:XXXX->XXXX

感谢任何帮助!


配置:

[default]
# Settings which apply to all the Sessions.

ConnectionType=initiator
LogonTimeout=86400
ResetOnLogon=Y
UseDataDictionary=Y
MaxLatency=240

#StartTime=00:00:00
#EndTime=00:00:00

#StartTime=02:30:00
#EndTime=12:30:00

StartTime=02:21:00
EndTime=12:21:00

HeartBtInt=30
ReconnectInterval=5

[session]
# Settings specifically for one session
BeginString=FIX.4.4
SocketConnectHost=xxx.xxx.xxx.xxx
SocketUseSSL=Y
SocketKeyStorePassword=importkey
CheckLatency=N

#SendResetSeqNumFlag=Y

# new setups

FileLogHeartbeats=Y
##----- CAPS Configuration ---------##

FileStorePath=/etc/bloomburg-live/msgs
FileLogPath=/etc/bloomburg-live/logs
DataDictionary=/etc/bloomburg-live/conf/FIX44.xml
SocketKeyStore=/root/.keystore
TargetCompID=BLPSTP
SocketConnectPort=xxxxx
SenderCompID=CAPSTP

# log configuration

FileIncludeMilliseconds=Y
FileIncludeTimeStampForMessages=Y
ScreenLogShowHeartBeats=Y
#Filter heartbeats from output (both incoming and outgoing)

PS - 应用程序在没有 CA 证书验证的情况下工作。启用 CA 证书验证时出错。

最佳答案

是的,如果应用程序以前使用 ssl。您无需在应用程序端进行任何更改。通常 Quickfix/j 就像 java 一样处理 ssl 验证。这意味着 openssl 和 java keytool 将为您解决问题。所以下面列出了步骤。

  1. 使用信任证书、私钥和 ca 创建 pkcs12 keystore 证书。
$ openssl pkcs12 -export -chain -in certificate.pem -inkey encodedKey.pem -out keystore.p12 -name importkey -CAfile CAcertificate.pem

Enter Export Password: importkey Verifying - Enter Export Password: importkey

  1. 使用 keytool,将 PKCS12 keystore 导入 quickfix/j 使用的名为/root/.keystore 的结果 keystore 。同样,您可以选择不同的密码。
keytool -importkeystore -destkeystore /root/.keystore -srckeystore keystore.p12 -alias importkey
Enter destination keystore password: importkey
Re-enter new password: importkey
Enter source keystore password: importkey
  1. 更改配置文件并将 keystore 复制到类路径。
SocketKeyStore=keystore.ImportKey
cp /root/.keystore keystore.ImportKey /your/classpath

就是这样。请注意,将 ssl key 和证书添加到 java keystore 对 quickfix/j 不起作用,因为 quickfix/j 正在维护自己的 keystore 。因此,请确保在 key 添加过程之后将 keystore 添加到类路径中。

引用 - https://blogs.oracle.com/jtc/entry/installing_trusted_certificates_into_a

关于java - QuickFIX/J CA 证书验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39093600/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com