Skip to content

Commit df74a37

Browse files
committed
[docs update]文件名规范
1 parent 24f4316 commit df74a37

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

docs/.vuepress/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ module.exports = config({
289289
},
290290
{
291291
title: "安全", prefix: "security/", icon: "security-fill",
292-
children: ["basis-of-authority-certification", "jwt优缺点分析以及常见问题解决方案", "sso-intro", "数据脱敏"]
292+
children: ["basis-of-authority-certification", "advantages&disadvantages-of-jwt", "sso-intro", "sentive-words-filter", "data-desensitization"]
293293
},
294294
"定时任务"
295295
],

docs/system-design/security/jwt优缺点分析以及常见问题解决方案.md renamed to docs/system-design/security/advantages&disadvantages-of-jwt.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# JWT 身份认证优缺点分析以及常见问题解决方案
1+
---
2+
title: JWT 身份认证优缺点分析
3+
category: 系统设计
4+
tag:
5+
- 安全
6+
---
27

38
之前分享了一个使用 Spring Security 实现 JWT 身份认证的 Demo,文章地址:[适合初学者入门 Spring Security With JWT 的 Demo](https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=2247485622&idx=1&sn=e9750ed63c47457ba1896db8dfceac6a&chksm=cea2477df9d5ce6b7af20e582c6c60b7408a6459b05b849394c45f04664d1651510bdee029f7&token=684071313&lang=zh_CN&scene=21#wechat_redirect)。 Demo 非常简单,没有介绍到 JWT 存在的一些问题。所以,单独抽了一篇文章出来介绍。为了完成这篇文章,我查阅了很多资料和文献,我觉得应该对大家有帮助。
49

docs/system-design/security/basis-of-authority-certification.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 认证授权基础
1+
---
2+
title: 认证授权基础
3+
category: 系统设计
4+
tag:
5+
- 安全
6+
---
27

38
## 认证 (Authentication) 和授权 (Authorization)的区别是什么?
49

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
# 数据脱敏
1+
---
2+
title: 数据脱敏
3+
category: 系统设计
4+
tag:
5+
- 安全
6+
---
27

38
数据脱敏说的就是我们根据特定的规则对敏感信息数据进行变形,比如我们把手机号、身份证号某些位数使用 * 来代替。

docs/system-design/security/sentive-words-filter.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
title: 敏感词过滤
3+
category: 系统设计
4+
tag:
5+
- 安全
6+
---
7+
18
系统需要对用户输入的文本进行敏感词过滤如色情、政治、暴力相关的词汇。
29

310
敏感词过滤用的使用比较多的 **Trie 树算法****DFA 算法**

docs/system-design/security/sso-intro.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# SSO 单点登录
1+
---
2+
title: SSO 单点登录
3+
category: 系统设计
4+
tag:
5+
- 安全
6+
---
27

38
> 本文授权转载自 : https://ken.io/note/sso-design-implement 作者:ken.io
49
>

0 commit comments

Comments
 (0)