gpt4 book ai didi

java - 如何动态更新信任库?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:35:19 25 4
gpt4 key购买 nike

我目前已经在我的 Spring Boot 应用程序中实现了双向 TLS,我正在以编程方式进行,如下所示:

@Bean
public ServletWebServerFactory servContainer() {
TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
TomcatConnectorCustomizer tomcatConnectorCustomizer = new TomcatConnectorCustomizer() {
@Override
public void customize(Connector connector) {
connector.setPort(8443);
connector.setScheme("https");
connector.setSecure(true);
Http11NioProtocol protocol = (Http11NioProtocol) connector.getProtocolHandler();

protocol.setSSLEnabled(true);
protocol.setKeystoreType("PKCS12");
protocol.setKeystoreFile(keystorePath);
protocol.setKeystorePass(keystorePass);
//client must be authenticated (the cert he sends should be in our trust store)
protocol.setSSLVerifyClient(Boolean.toString(true));
protocol.setTruststoreFile(truststorePath);
protocol.setTruststorePass(truststorePass);
protocol.setKeyAlias("APP");
}
};
tomcat.addConnectorCustomizers(tomcatConnectorCustomizer);
return tomcat;
}

这工作正常并且符合预期,但我有一个要求,我需要在运行时更新信任库(例如,当调用 @getmapping 端点时)。

具体来说,我需要在不停止/重新启动应用程序的情况下将新证书添加到 TrustStore。因此,我将不得不以某种方式修改我的应用程序的内存中信任库。

我该怎么做?

我尝试动态添加一个 bean,它将新的信任管理器添加到 SslContext,但这不起作用。

@GetMapping("/register")
public String Register() throws Exception {
ConfigurableApplicationContext configContext = (ConfigurableApplicationContext) appContext;
ConfigurableListableBeanFactory beanRegistry = configContext.getBeanFactory();
SSLContext sslContext = getSSLContext();
beanRegistry.registerSingleton("sslContext", sslContext);
return "okay";
}


public SSLContext getSSLContext() throws Exception {
TrustManager[] trustManagers = new TrustManager[] {
new ReloadableX509TrustManager(truststoreNewPath)
};
SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, trustManagers, null);
SSLContext.setDefault(sslContext);
return sslContext;
}

我还尝试将上面的 getSSLContext() 作为 @bean 调用,但也没有用。

我当前的解决方案基于这些链接,它们适用于 Java,但我不确定如何在我的 Spring 应用程序中实现它们。

我找到了一个解决方案,它准确描述了如何拥有动态信任库,但我无法弄清楚如何在运行时重新加载信任库。例如,调用 GET 端点时。

Client Certificate authentication without local truststore我有一个证书列表,我只需要知道如何调用 ReloadableX509TrustManageraddCertificates() 方法。

最佳答案

首先,使您的 ReloadableX509TrustManager 成为托管 bean - 例如使用 @Component 进行注释

@Component
class ReloadableX509TrustManager
implements X509TrustManager {
.....
public ReloadableX509TrustManager(@Value("someValueFromAppConfig")String tspath){....}
.....

其次,在你的 Controller 中使用它而不是创建一个新的,例如

@GetMapping("/register")
public String Register() throws Exception {
ConfigurableApplicationContext configContext = (ConfigurableApplicationContext) appContext;
ConfigurableListableBeanFactory beanRegistry = configContext.getBeanFactory();
SSLContext sslContext = getSSLContext();
beanRegistry.registerSingleton("sslContext", sslContext);
return "okay";
}

@Autowired private ReloadableX509TrustManager reloadableManager;
public SSLContext getSSLContext() throws Exception {
TrustManager[] trustManagers = new TrustManager[] {
reloadableManager
};
SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, trustManagers, null);
SSLContext.setDefault(sslContext);
return sslContext;
}

第三,按照文章了解如何“重新加载”该信任管理器。可以通过将大多数方法更改为 package protected 并从某种证书服务调用它来完成 - 或者将其公开并直接调用。选择权在您。

关于java - 如何动态更新信任库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57143673/

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