Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typo '争取' to '正确' #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/computer-networks/http/https.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default () => <img alt="否认" src={img} width={720} />;
- **混合加密**:公钥加密密钥,密钥加密数据,私钥解密密钥,密钥解密数据(非对称传送密钥,密钥传送数据)。解决非对称加密效率问题
- **中间人攻击**:秘密替换公钥窃取数据,源于服务端无法确认客户端公钥是否合法
- **消息鉴别码**:`MAC` 密钥和密文组成的字符串的哈希值。能够解决 `伪造` 问题,但无法解决 `否认` 问题
- **数字签名**:服务端创建数字签名,而客户端只验证签名是否争取。解决 `否认` 问题
- **数字签名**:服务端创建数字签名,而客户端只验证签名是否正确。解决 `否认` 问题
- **数字证书**:由权威机构背书创建证书,保证公钥不被篡改。解决 `中间人攻击` 问题

### 对称加密
Expand Down