gpt4 book ai didi

java - SSL/TLS 动态 key 生成

转载 作者:太空宇宙 更新时间:2023-11-03 14:04:31 26 4
gpt4 key购买 nike

在我的这个项目中,我需要在客户端和服务器之间使用 SSL/TLS 实现安全连接。我找到了一篇关于此的好文章,所以我成功地完成了我的任务。

This is the article .

我的问题很简单,但我无法在任何地方找到答案。在这种特殊情况下,我的客户在 SSL 协议(protocol)中具有相同的 key ,该 key 是通过上一个链接上的教程创建的,并放入某种文件中。此过程中的潜在问题是有人可以访问该文件,并且由于每个客户端都有该 key ,因此有人可以监听所有连接。

我想问的是,有没有机会在每次客户端想要访问服务器时动态生成 key 并将生成的 key 放入服务器信任库?

更新

public static final String PATH_TO_ANDROID_KEYSTORE = "and/client.bks";
public static final String PATH_TO_ANDROID_TRUSTSTORE = "and/clienttruststore.bks";

String pathToKeyStore = PATH_TO_ANDROID_KEYSTORE;
String pathToTrustStore = PATH_TO_ANDROID_TRUSTSTORE;

KeyStore keyStoreKeys = KeyStore.getInstance(keyStoreType);
keyStoreKeys.load(Gdx.files.internal(pathToKeyStore).read(), passphrase);

KeyStore keyStoreTrust = KeyStore.getInstance(keyStoreType);
keyStoreTrust.load(Gdx.files.internal(pathToTrustStore).read(), passphrase);

KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
keyManagerFactory.init(keyStoreKeys, passphrase);

TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
trustManagerFactory.init(keyStoreTrust);

这是客户端代码,看起来客户端已经在他们的信任库中导出了服务器的证书,但实际上他们使用的是使用 openssl 工具在 keystore 中仅生成一次的相同私钥。

最佳答案

In this particular case, my clients have the same key in the SSL protocol which is created through tutorial on a previous link and put in some kind of a file.

不清楚。你是说他们共享相同的私钥吗?如果是这样,那是您的系统设计中的缺陷。每个客户端都应该有自己的私钥。否则私钥就不是,呃,私密的。并且应该通过 keystore 访问该 key ,其密码只有应用程序知道,这至少提供了另一道防线。

如果您只是说他们都有服务器证书的导出副本,在他们的truststores中,则根本没有安全风险:它是完全正常。

Potential problem in this process is that someone can access that file and since every client has that key, someone can listen to all connections.

不,他们不能。如果您不泄露您的服务器私钥,SSL 就不会受到中间人攻击,但如果您谈论的是客户端私钥,它们可以伪装成真正的客户端,即使他们不是,如果他们可以突破 keystore 密码障碍。

What I wanted to ask, is there any chance to dynamically generate keys every time some client wants to access the server and put the generated key in the server truststore?

不安全,也不在线。如果您的真正客户可以做到,那么攻击者也可以。这就是必须离线分发信任 Material 的原因。

关于java - SSL/TLS 动态 key 生成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44894129/

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