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

com.feizhaiyou.encrypt.format.SensitiveProcessor Maven / Gradle / Ivy

Go to download

整合SpringBoot可对Web项目的HTTP接口参数进行脱敏与加解密,通过注解的方式直接使用加解密,支持AES、RSA,可自定义脱敏与加解密配置。

The newest version!
package com.feizhaiyou.encrypt.format;

/**
 * @author ls
 * @since 2023-07-27
 */
public interface SensitiveProcessor {

    /**
     * 脱敏处理
     * @param text 敏感信息
     * @param type 脱敏类型标识
     * @return 脱敏后的信息
     */
    String format(String text, String type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy