当前位置: 首页 > news >正文

福州网站建设名列前茅最便宜手机网站建设

福州网站建设名列前茅,最便宜手机网站建设,wordpress 删除边栏,山东网站建设网站SSL/TLS介绍 官话说SSL是安全套接层(secure sockets layer)#xff0c;TLS是SSL的继任者#xff0c;叫传输层安全(transport layer security)。 说白点#xff0c;就是在明文的上层和TCP层之间加上一层加密#xff0c;这样就保证上层信息传输的安全。如HTTP协议是明文传输…SSL/TLS介绍 官话说SSL是安全套接层(secure sockets layer)TLS是SSL的继任者叫传输层安全(transport layer security)。 说白点就是在明文的上层和TCP层之间加上一层加密这样就保证上层信息传输的安全。如HTTP协议是明文传输加上SSL层之后就有了雅称HTTPS。它存在的唯一目的就是保证上层通讯安全的一套机制。 传统的 TLS 握手过程: 单向认证和双向认证 SSL认证分为单向认证和双向认证是在安全通信中使用的两种不同的身份验证方式它们之间的主要区别在于身份验证的方向和安全性。 单向认证One-Way Authentication 客户端认证服务器 无需客户端拥有客户端证书只需服务端拥有服务器证书。例如浏览器通常会内置一组根证书这些根证书由浏览器厂商或操作系统供应商预先安装在浏览器中。这组内置的根证书是被广泛信任的证书颁发机构Certificate AuthoritiesCAs签发的根证书用于验证网站和服务的数字证书的可信性。当您访问一个使用HTTPS协议的网站时您的浏览器会使用其内置的根证书来验证该网站的数字证书是否由受信任的CA签发。如果验证通过浏览器将显示一个锁定图标或其他安全标志表示连接是安全的。如果验证未通过浏览器通常会发出警告提醒您可能存在安全风险。因此根证书在浏览器中起到了关键的作用它们构成了安全通信的基础。浏览器定期更新其内置的根证书以反映新的CA或吊销的证书以确保持续的安全性和可信性。 适用场景单向认证适用于大多数Web浏览和服务器通信场景一般情况下在打开页面的时候没有提示数据加密插件的属于单向认证即浏览器只持有公钥。 双向认证Two-Way Authentication 服务器验证客户端和客户端验证服务器双向认证中服务器验证客户端的身份同时客户端也验证服务器的身份。这意味着客户端和服务器都需要提供有效的证书以进行相互验证。 更高的安全性双向认证提供更高的安全性因为它确保了通信的两端都是合法的并且双方都可以互相验证。 适用场景双向认证通常在需要更高级别的安全性的场景中使用例如金融交易、医疗保健、政府通信等其中双方都需要互相验证以确保身份。类似于支付宝、银行的U顿支付之类的会要求用户安装插件或驱动属于双向验证。 总之单向认证用于服务器验证客户端的情况而双向认证要求双方都进行身份验证提供更高级别的安全性。选择哪种认证方式取决于您的应用程序的特定需求和安全性要求。 生成自签名证书文件 数字证书一般由数字证书认证机构签发证书包含了 公钥。证书拥有者身份信息。数字证书认证机构发行者信息。发行者对这份文件的数字签名及使用的算法。有效期。 生成 CA 根证书、服务器证书和客户端证书的步骤如下 步骤 1创建 CA 根密钥和证书 首先您需要生成一个 CA 根密钥私钥和一个 CA 根证书。以下是一些基本的步骤 创建 CA 根密钥 (ca-key.pem)。这是用于签署服务器和客户端证书请求的私钥。请确保保护好这个私钥文件因为它是证书链的根。 openssl genpkey -algorithm RSA -out ca-key.pem使用 CA 根密钥创建自签名的 CA 根证书 (ca-cert.pem)。 openssl req -new -x509 -key ca-key.pem -out ca-cert.pem -days 3650在此过程中您需要提供一些 CA 根证书的信息如组织、单位、常用名等。 步骤 2创建服务器证书请求和证书 接下来您需要为服务器创建证书请求并签署服务器证书。 创建服务器密钥 (server-key.pem)。 openssl genpkey -algorithm RSA -out server-key.pem 使用服务器密钥创建证书请求 (server-csr.pem)。在这一步中您需要提供服务器的信息如主机名通常是服务器的域名。 openssl req -new -key server-key.pem -out server-csr.pem (py3.8) rootlocalhost:/opt/lianhaifeng/test2# openssl req -new -key server-key.pem -out server-csr.pem You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter ., the field will be left blank. ----- Country Name (2 letter code) [AU]:CN State or Province Name (full name) [Some-State]:fujian Locality Name (eg, city) []:xiamen Organization Name (eg, company) [Internet Widgits Pty Ltd]: Organizational Unit Name (eg, section) []: Common Name (e.g. server FQDN or YOUR name) []: Email Address []:Please enter the following extra attributes to be sent with your certificate request A challenge password []: An optional company name []:使用 CA 根证书和私钥签署服务器证书请求生成服务器证书 (server-cert.pem)。 openssl x509 -req -in server-csr.pem -CA ca-cert.pem -CAkey ca-key.pem -out server-cert.pem -CAcreateserial -days 3650(py3.8) rootlocalhost:/opt/lianhaifeng/test2# openssl x509 -req -in server-csr.pem -CA ca-cert.pem -CAkey ca-key.pem -out server-cert.pem -CAcreateserial -days 3650 Signature ok subjectC CN, ST fujian, L xiamen, O Internet Widgits Pty Ltd Getting CA Private Key验证生成的服务器证书如果验证成功它将不会输出任何错误消息。 openssl verify -CAfile ca-cert.pem client-cert.pem # 验证证书链完整性 openssl x509 -text -noout -in server-cert.pem # 验证证书属性 (py3.8) rootlocalhost:/opt/lianhaifeng/test2# openssl verify -CAfile ca-cert.pem server-cert.pem server-cert.pem: OK步骤 3创建客户端证书请求和证书可选 如果您需要客户端证书以进行双向认证则可以执行以下步骤 创建客户端密钥 (client-key.pem)。 openssl genpkey -algorithm RSA -out client-key.pem (py3.8) rootlocalhost:/opt/lianhaifeng/test2# openssl genpkey -algorithm RSA -out client-key.pem .................................................................................................................................................................... ........使用客户端密钥创建证书请求 (client-csr.pem)。 openssl req -new -key client-key.pem -out client-csr.pem (py3.8) rootlocalhost:/opt/lianhaifeng/test2# openssl req -new -key client-key.pem -out client-csr.pem You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter ., the field will be left blank. ----- Country Name (2 letter code) [AU]:CN State or Province Name (full name) [Some-State]:fujian Locality Name (eg, city) []:qz Organization Name (eg, company) [Internet Widgits Pty Ltd]: Organizational Unit Name (eg, section) []: Common Name (e.g. server FQDN or YOUR name) []: Email Address []:Please enter the following extra attributes to be sent with your certificate request A challenge password []: An optional company name []: 使用 CA 根证书和私钥签署客户端证书请求生成客户端证书 (client-cert.pem)。 openssl x509 -req -in client-csr.pem -CA ca-cert.pem -CAkey ca-key.pem -out client-cert.pem -CAcreateserial -days 3650 注意 在实际生产环境中需要更多的安全性和细化控制。此示例仅提供了基本步骤和示例命令具体的配置可能因您的环境和需求而有所不同。同时请确保适当地保护和存储您的密钥和证书文件。 验证生成的服务器证书如果验证成功它将不会输出任何错误消息。 openssl verify -CAfile ca-cert.pem client-cert.pem # 验证证书链完整性 openssl x509 -text -noout -in server-cert.pem # 验证证书属性 python实现SSL单向认证 通过上面的介绍我们已经了解了单向认证的一般概念及流程。 下面是一个简单的Python示例代码演示了如何在客户端认证服务端证书 ssl_server.py import socket import ssl import threadingclass server_ssl:def build_listen(self):# CA_FILE ca-cert.pemKEY_FILE server-key.pemCERT_FILE server-cert.pemcontext ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)context.load_cert_chain(certfileCERT_FILE, keyfileKEY_FILE) # 加载服务端证书和私钥# context.load_verify_locations(CA_FILE) # 加载根证书context.verify_mode ssl.CERT_NONE # 不需要客户端提供证书# 监听端口with socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0) as sock:# 将socket打包成SSL socketwith context.wrap_socket(sock, server_sideTrue) as ssock:ssock.bind((127.0.0.1, 10036))ssock.listen(5)print(Server is listening for connections...)while True:# 接收客户端连接client_socket, addr ssock.accept()print(fAccepted connection from {addr})# 创建新线程来处理客户端请求client_thread threading.Thread(targetself.handle_client, args(client_socket, addr))client_thread.start()def handle_client(self, client_socket, addr):try:while True:# 接收客户端信息msg client_socket.recv(1024).decode(utf-8)if not msg:break # 客户端断开连接print(fReceived message from client {addr}: {msg})# 向客户端发送信息response fReceived: {msg}.encode(utf-8)client_socket.send(response)except Exception as e:print(fError: {str(e)})finally:client_socket.close()print(Connection closed)if __name__ __main__:server server_ssl()server.build_listen() 运行server端代码 (py3.8) rootlocalhost:/opt/lianhaifeng# python ssl_server.py Server is listening for connections... Accepted connection from (127.0.0.1, 49814) Received message from client (127.0.0.1, 49814): hello Received message from client (127.0.0.1, 49814): worldssl_client.py import socket import sslclass client_ssl:def send_hello(self):CA_FILE ca-cert.pem# CLIENT_KEY_FILE client-key.pem# CLIENT_CERT_FILE client-cert.pem# 创建SSL上下文对象context ssl.SSLContext(ssl.PROTOCOL_TLS)context.check_hostname False# context.load_cert_chain(certfileCLIENT_CERT_FILE, keyfileCLIENT_KEY_FILE) # 服务器不需要认证客户端证书故不需要context.load_verify_locations(CA_FILE) # 使用根证书认证服务端证书context.verify_mode ssl.CERT_REQUIRED# 与服务端建立socket连接with socket.socket() as sock:# 将socket打包成SSL socketwith context.wrap_socket(sock, server_sideFalse) as ssock:ssock.connect((127.0.0.1, 10036))while True:# 输入要发送的消息msg input(Enter a message to send (or quit to exit): )if msg.lower() quit:break# 向服务端发送消息ssock.send(msg.encode(utf-8))# 接收并打印服务端返回的消息response ssock.recv(1024).decode(utf-8)print(fReceived message from the server: {response})if __name__ __main__:client client_ssl()client.send_hello() 运行客户端代码 (py3.8) rootlocalhost:/opt/lianhaifeng# python ssl_client.py Enter a message to send (or quit to exit): hello Received message from the server: Received: hello Enter a message to send (or quit to exit): world Received message from the server: Received: world Enter a message to send (or quit to exit): python实现SSL双向认证 下面是一个简单的Python示例代码演示了如何在服务器和客户端之间进行双向认证 服务器端代码 server.py import socket import ssl import threadingclass server_ssl:def build_listen(self):CA_FILE ca-cert.pemKEY_FILE server-key.pemCERT_FILE server-cert.pemcontext ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)context.load_cert_chain(certfileCERT_FILE, keyfileKEY_FILE)context.load_verify_locations(CA_FILE)context.verify_mode ssl.CERT_REQUIRED # 如果服务器不验证客户端证书ssl.CERT_NONE context.check_hostname False# 监听端口with socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0) as sock:# 将socket打包成SSL socketwith context.wrap_socket(sock, server_sideTrue) as ssock:ssock.bind((127.0.0.1, 10028))ssock.listen(5)print(Server is listening for connections...)while True:# 接收客户端连接client_socket, addr ssock.accept()print(fAccepted connection from {addr})# 创建新线程来处理客户端请求client_thread threading.Thread(targetself.handle_client, args(client_socket, addr))client_thread.start()def handle_client(self, client_socket, addr):try:while True:# 接收客户端信息msg client_socket.recv(1024).decode(utf-8)if not msg:break # 客户端断开连接print(fReceived message from client {addr}: {msg})# 向客户端发送信息response fReceived: {msg}.encode(utf-8)client_socket.send(response)except Exception as e:print(fError: {str(e)})finally:client_socket.close()print(Connection closed)if __name__ __main__:server server_ssl()server.build_listen() (py3.8) rootlocalhost:/opt/lianhaifeng/test2# python server.py Server is listening for connections... Accepted connection from (127.0.0.1, 55364) Received message from client (127.0.0.1, 55364): hello Received message from client (127.0.0.1, 55364): haige1 Accepted connection from (127.0.0.1, 55366) Received message from client (127.0.0.1, 55366): hello Received message from client (127.0.0.1, 55366): haige2客户端代码 client.py import socket import sslclass client_ssl:def send_hello(self):CA_FILE ca-cert.pemSERVER_CERT_FILE server-cert.pem # 服务器证书文件路径CLIENT_KEY_FILE client-key.pemCLIENT_CERT_FILE client-cert.pem# 创建SSL上下文对象context ssl.SSLContext(ssl.PROTOCOL_TLS)context.check_hostname Falsecontext.load_cert_chain(certfileCLIENT_CERT_FILE, keyfileCLIENT_KEY_FILE)context.load_verify_locations(CA_FILE)context.verify_mode ssl.CERT_REQUIREDcontext.load_verify_locations(cafileCA_FILE) # 设置根证书# 与服务端建立socket连接with socket.socket() as sock:# 将socket打包成SSL socketwith context.wrap_socket(sock, server_sideFalse) as ssock:ssock.connect((127.0.0.1, 10026))while True:# 输入要发送的消息msg input(Enter a message to send (or quit to exit): )if msg.lower() quit:break# 向服务端发送消息ssock.send(msg.encode(utf-8))# 接收并打印服务端返回的消息response ssock.recv(1024).decode(utf-8)print(fReceived message from the server: {response})if __name__ __main__:client client_ssl()client.send_hello() 客户端1 (py3.8) rootlocalhost:/opt/lianhaifeng/test2# python client.py Enter a message to send (or quit to exit): hello Received message from the server: Received: hello Enter a message to send (or quit to exit): haige1 Received message from the server: Received: haige1 Enter a message to send (or quit to exit):客户端2 (py3.8) rootlocalhost:/opt/lianhaifeng/test2# python client.py Enter a message to send (or quit to exit): hello Received message from the server: Received: hello Enter a message to send (or quit to exit): haige2 Received message from the server: Received: haige2 Enter a message to send (or quit to exit): 若是服务端要求验证客户端证书但是客户端没有携带证书则会引发一个常见的网络错误ConnectionResetError: [Errno 104] Connection reset by peer此时在服务器端也会有详细信息ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:1131) 如果本篇文章对你所有帮助欢迎转发、点赞、收藏、在看非常感谢。 参考 https://www.jianshu.com/p/ffcf1b765d76 https://blog.csdn.net/wuliganggang/article/details/78428866 https://blog.csdn.net/zhangtaoym/article/details/55259889 https://cloud.tencent.com/document/product/214/54254
http://www.w-s-a.com/news/654972/

相关文章:

  • 可信赖的武进网站建设中山网站建设方案
  • 网站设计方面有什么公司运动鞋网站建设目的
  • 学校门户网站流程建设方案找人做网站 多少钱
  • 网站域名更换相应内容网站策划 要求
  • 百盛联合建设集团网站开发网站的步骤
  • php做网站评价网络公司经营范围可以加技
  • 网站积分的作用保定专业网站建设
  • 莆田做网站公司电话如何提升网站访问速度
  • 网站开发流程步骤 口袋网页访问wordpress
  • 湘潭做网站的公司自助建站教程
  • 做网站推广和头条推广wordpress 验证密码错误
  • 淘宝联盟网站怎么做深圳市创想三维科技有限公司
  • 校园网站建设招标公告php网站开发什么
  • 06628 网页制作与网站开发陕西省交通建设网站
  • 做wish如何利用数据网站暗红色网站
  • 企业 网站备案 法人长春建站模板搭建
  • 网站做快照网站改版 升级的目的
  • 自己做一个网站要多少钱海外推广什么意思
  • 郑州做网站哪家专业网络基础知识大全
  • 济南制作网站企业php 调试网站
  • 互联网站管理工作细则做网站通栏模糊
  • 徐州手机网站开发公司电话青岛有名的互联网公司
  • 如何在手机做网站wordpress 网站搬迁
  • 网站透明导航代码国外卖货平台有哪些
  • 张家界网站建设方案中国网页设计师
  • 淮南网站建设服务东莞营销型手机网站建设
  • 常德做网站专业公司河南高端网站建设
  • 网站服务器建设的三种方法会展设计ppt
  • 如何把自己做的网站放到内网seo优化网络
  • 北京网站建设net2006厦门优化公司