当前位置:网站首页>encrypted transmission process
encrypted transmission process
2022-07-31 00:14:00 【Miracle_ze】
Encrypted transmission
symmetric encryption algorithm [HTTP]

Asymmetric encryption algorithm [HTTPS]

A to B
A encrypts with B's public key.In the past, only B's private key can be solved.A and B will not give the private key to the other party.
Problem situation:
A sends it with its own public key, and connects its public key with the information to send it.b can be solved with a public key.
But if there is a c, it can use the public key of a in the information if it has obtained this information, then the mutual information will be exposed.
Solution
Combined with the symmetric encryption algorithm, when the asymmetric encryption algorithm is used, the message carries a symmetric encryption key algorithm.Then ab has this unique symmetric encryption algorithm key, and c does not know.This can be efficient and safe
In order to prevent the transmission of public key information from being replaced by a third party: CA certificate
The CA certificate is used to prevent the public key from being intercepted during the transmission of the public key.Encrypt once.In this way, the public key received by the recipient must be unlocked with the private key of the CA certificate and then used.This prevents tampering in the transmission of public key information.
Digital Signature and Encryption
Digital signature: private key encryption public key decryption
Encryption: public key encryption private key decryption
边栏推荐
- Ukraine's foreign ministry: wu was restored to complete the export of food security
- 实验7(MPLS实验)
- Shell脚本 if语句
- 【深入浅出玩转FPGA学习13-----------测试用例设计1】
- [动态规划] 0-1背包问题和完全背包问题
- xss靶机训练【实现弹窗即成功】
- An easy-to-use interface testing tools - the Postman
- 【VisDrone数据集】YOLOV4训练VisDrone数据集步骤与结果
- HCIP第十五天笔记
- uniapp folding box secondary loop
猜你喜欢
随机推荐
[动态规划] 0-1背包问题和完全背包问题
How to install joiplay emulator rtp
数据清洗-使用es的ingest
PHP图片添加文字水印
joiplay模拟器如何导入游戏存档
JS中? ?和??=和?.和 ||的区别
Learn Scope from a Compilation Perspective!
二叉查找树的定义,查找,插入,删除
HCIP Day 15 Notes
游戏商城表建立
leetcode 406. Queue Reconstruction by Height 根据身高重建队列(中等)
Steven Giesel recently published a 5-part series documenting his first experience building an application with the Uno Platform.
【萌新解题】删除链表的倒数第 N 个结点
Axure Carousel
【深入浅出玩转FPGA学习13-----------测试用例设计1】
宽客必备神器-AKShare
Shell脚本 if语句
Oracle一个诡异的临时表空间不足的问题
How to ensure the consistency of database and cache data?
xss靶机训练【实现弹窗即成功】









