gpt4 book ai didi

ssl - 实现 SSL 的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 13:32:57 27 4
gpt4 key购买 nike

我有一个 Flask 应用程序(客户端),我需要将一些数据发送到服务器(目前是另一个 Flask 应用程序)并获取一些相应的数据。我需要使用 REST,因为服务器可以是以后的任何东西(当前的 flask 应用程序是用于测试的虚拟服务器)。我需要在客户端和服务器之间建立 SSL 连接。我看到 SSL 分几个步骤工作:

  1. 客户端请求加密连接。
  2. 服务器以包含公钥的 SSL 证书进行响应。
  3. 客户验证SSL证书
  4. 客户端创建私钥
  5. 客户端用公钥加密私钥发送给服务器。
  6. 服务器解密并得到私钥。
  7. 这样就在客户端和服务器之间建立了加密连接。客户端和服务器之间的进一步数据交换是通过使用私钥加密数据来实现的。

这就是我要实现的目标。如果我的 SSL 概念有误,请纠正我。

我已经看到了下面的实现并且非常适合我。

客户端使用requests.get()verify=<path to server SSL certificate> .我已经使用 openssl 为服务器生成了 SSL 证书如下。

openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365

但我不认为上面的 7 个步骤都在这里涵盖。实现 SSL 的实际方式是什么?任何帮助将不胜感激。

最佳答案

  1. Client requests for an encrypted connection.

正确。

  1. Server responds with an SSL Certificate which will have a public key.

正确。

  1. Client verifies the SSL Certificate

正确。

  1. Client creates a private key

不正确。发生这种情况已经太晚了。

  1. Client encrypts the private key with the public key and sends it to the server.

不正确。没有这样的步骤。请参阅 RFC 2246 和后继者。

  1. Server decrypts it and gets the private key.

不正确,同上。

  1. Thus an encrypted connection is established between client and server.

不正确,同上。

Further exchange of data between client and server happens by encrypting the data with the private key.

不正确,同上。 TLS 的工作原理是 (1) 通过服务器 证书和 PKI 建立信任; (2) 可选通过客户端证书建立信任; (3) 通过 key 协商过程建立一个对称 session key ,在这个过程中实际的 session key 从不传输。

This is what I am trying to achieve.

不,不是。您正在尝试建立 TLS 连接。它的作用实际上与您无关。

Please correct me if I got the SSL concept wrong.

你完全错了。

I have generated SSL certificate for server using openssl as follows.

不,你没有。您已创建证书签名请求 (CSR)。在您获得证书颁发机构 (CA) 签名之前,这是无用的。它不是 SSL 证书。

In the above method of implementation, client verifies the server's certificate for every rest call but I dont want to do this. I want to create an encrypted connection between client and server and then the further exchange of data should be encrypted. So, I think the initial creation of enrypted connection between client and server is missing. Also, the private key generation from client side is missing. I want to implement SSL and I think TLS is different from SSL. Correct me if I am wrong.

你错了。 TLS 支持 session 恢复,这允许简化的握手,从而消除了证书交换步骤。缺少“从客户端生成私钥”步骤,因为它不一定存在。你在猜测。

关于ssl - 实现 SSL 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49104377/

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