All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xiaoyuge5201.encryption.DesensitizationUtil Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package com.github.xiaoyuge5201.encryption;

import org.apache.commons.lang3.StringUtils;

/**
 * 加密用户名 手机号,身份证号等
 * @author yugb
 */
public class DesensitizationUtil {

    /**
     * 只显示第一个汉字,其他隐藏为2个星号<例子:李**>
     *
     * @param str 需要加密的内容
     * @param index    为第index位开始脱敏
     * @return 加密结果
     */
    public static String left(String str, int index) {
        if (StringUtils.isBlank(str)) {
            return "";
        }
        String name = StringUtils.left(str, index);
        return StringUtils.rightPad(name, StringUtils.length(str), "*");
    }

    /**
     * 110****58,前面保留3位明文,后面保留2位明文
     * @param str 加密内容
     * @param index 3
     * @param end   2
     * @return 加密结果
     */
    public static String around(String str, int index, int end) {
        if (StringUtils.isBlank(str)) {
            return "";
        }
        return StringUtils.left(str, index).concat(StringUtils.removeStart(StringUtils.leftPad(StringUtils.right(str, end), StringUtils.length(str), "*"), "***"));
    }

    /**
     * 后四位,其他隐藏<例子:****1234>
     *
     * @param str 字符串
     * @param end 后几位加密
     * @return 加密结果
     */
    public static String right(String str, int end) {
        if (StringUtils.isBlank(str)) {
            return "";
        }
        return StringUtils.leftPad(StringUtils.right(str, end), StringUtils.length(str), "*");
    }

    /**
     * 手机号码前三后四脱敏
     *
     * @param mobile 手機號碼
     * @return 加密后的結果
     */
    public static String mobileEncrypt(String mobile) {
        if (StringUtils.isEmpty(mobile) || (mobile.length() != 11)) {
            return mobile;
        }
        return mobile.replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2");
    }


    /**
     * 身份证前三后四脱敏
     *
     * @param id 身份证
     * @return 身份证脱敏
     */
    public static String idEncrypt(String id) {
        if (StringUtils.isEmpty(id) || (id.length() < 8)) {
            return id;
        }
        return id.replaceAll("(?<=\\w{3})\\w(?=\\w{4})", "*");
    }

    /**
     * 护照前2后3位脱敏,护照一般为8或9位
     * @param id 护照
     * @return 脱敏结果
     */
    public static String idPassport(String id) {
        if (StringUtils.isEmpty(id) || (id.length() < 8)) {
            return id;
        }
        return id.substring(0, 2) + new String(new char[id.length() - 5]).replace("\0", "*") + id.substring(id.length() - 3);
    }

    /**
     * 证件后几位脱敏
     *
     * @param id 身份证号码
     * @param sensitiveSize 脱敏位数
     * @return 脱敏后的身份证
     */
    public static String idPassport(String id, int sensitiveSize) {
        if (StringUtils.isBlank(id)) {
            return "";
        }
        int length = StringUtils.length(id);
        return StringUtils.rightPad(StringUtils.left(id, length - sensitiveSize), length, "*");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy