索引

B C D H M P R 
All Classes and Interfaces|所有程序包

C

char_reserve(String, int, int, char) - 类中的静态方法 Desensitization_Algorithm
脱敏算法类型:掩码脱敏
脱敏算法3:保留指定位的字符

示例如下:
输⼊:13800001234
参数:n=3,m=7,遮盖符#
输出:###0000####

调用方式:
String alg_3= char_reserve("13945678952",4,7,'#')
char_shift(String, int, String) - 类中的静态方法 Desensitization_Algorithm
脱敏算法类型:变换脱敏
脱敏算法10:字符位移

字符串整体向左或向右循环位移bit位

示例如下:
输⼊:13800001234
参数:5位,向右
输出:01234138000

调用方式:
String alg_10 = char_shift("13800001234",5,"向右")
char_substitute(String, String, String, String, String) - 类中的静态方法 Desensitization_Algorithm
脱敏算法类型:替换脱敏
脱敏算法6:码表替换

此处仅实现针对两个不同字符进行替换的功能
后续考虑实现:输入码表后,替换相应字符

示例如下:
输⼊:13800001234
参数:0->A,1->B
输出:B38AAAAB234

调用方式:
String alg_6 = char_substitute("13800001234","0","A","1","B")
B C D H M P R 
All Classes and Interfaces|所有程序包