脱敏算法是 Apache ShardingSphere 的脱敏功能使用的算法,ShardingSphere 内置了多种算法,可以让用户方便使用。
类型:MD5
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
salt | String | 盐值(可选) |
类型:KEEP_FIRST_N_LAST_M
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
first-n | int | 前 n 位 |
last-m | int | 后 n 位 |
replace-char | String | 替换字符 |
类型:KEEP_FROM_X_TO_Y
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
from-x | int | 起始位置(从 0 开始) |
to-y | int | 结束位置(从 0 开始) |
replace-char | String | 替换字符 |
类型:MASK_FIRST_N_LAST_M
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
first-n | int | 前 n 位 |
last-m | int | 后 n 位 |
replace-char | String | 替换字符 |
类型:MASK_FROM_X_TO_Y
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
from-x | int | 起始位置(从 0 开始) |
to-y | int | 结束位置(从 0 开始) |
replace-char | String | 替换字符 |
类型:MASK_BEFORE_SPECIAL_CHARS
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
special-chars | String | 特殊字符(首次出现) |
replace-char | String | 替换字符 |
类型:MASK_AFTER_SPECIAL_CHARS
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
special-chars | String | 特殊字符(首次出现) |
replace-char | String | 替换字符 |
类型:GENERIC_TABLE_RANDOM_REPLACE
可配置属性:
名称 | 数据类型 | 说明 |
---|---|---|
uppercase-letter-codes | String | 大写字母码表(以英文逗号分隔,默认值:A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) |
lowercase-letter-codes | String | 小写字母码表(以英文逗号分隔,默认值:a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) |
digital-codes | String | 数字码表(以英文逗号分隔,默认值:0,1,2,3,4,5,6,7,8,9) |
special-codes | String | 特殊字符码表(以英文逗号分隔,默认值:~,!,@,#,$,%,^,&,*,:,<,>,¦) |
rules:
- !MASK
tables:
t_user:
columns:
password:
maskAlgorithm: md5_mask
email:
maskAlgorithm: mask_before_special_chars_mask
telephone:
maskAlgorithm: keep_first_n_last_m_mask
maskAlgorithms:
md5_mask:
type: MD5
mask_before_special_chars_mask:
type: MASK_BEFORE_SPECIAL_CHARS
props:
special-chars: '@'
replace-char: '*'
keep_first_n_last_m_mask:
type: KEEP_FIRST_N_LAST_M
props:
first-n: 3
last-m: 4
replace-char: '*'