Skip to content

Commit

Permalink
Merge pull request Snailclimb#537 from Rustin-Liu/Rustin-Liu-patch-1
Browse files Browse the repository at this point in the history
Snailclimb#536 修复 Cookie 存储敏感信息注意事项语句不通顺问题
  • Loading branch information
Snailclimb authored Nov 12, 2019
2 parents a0c9f93 + 40d213e commit fd18f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/network/计算机网络.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Cookie 和 Session都是用来跟踪浏览器用户身份的会话方式,但

Cookie 数据保存在客户端(浏览器端),Session 数据保存在服务器端。

Cookie 存储在客户端中,而Session存储在服务器上,相对来说 Session 安全性更高。如果使用 Cookie 的一些敏感信息不要写入 Cookie 中,最好能将 Cookie 信息加密然后使用到的时候再去服务器端解密。
Cookie 存储在客户端中,而Session存储在服务器上,相对来说 Session 安全性更高。如果要在 Cookie 中存储一些敏感信息,不要直接写入 Cookie 中,最好能将 Cookie 信息加密然后使用到的时候再去服务器端解密。

## 十一 HTTP 1.0和HTTP 1.1的主要区别是什么?

Expand Down

0 comments on commit fd18f9a

Please sign in to comment.