springboot参数加密

添加类

public class DecryptEnvironmentPostProcessor implements EnvironmentPostProcessor {
    @Override
    public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) {
        Properties props = new Properties();  // 临时存储需要替换的配置
        // 假设加密密码前缀为 "ENC(",后缀为 ")"
        MutablePropertySources propertySources = environment.getPropertySources();
        for (PropertySource<?> propertySource : propertySources) {
            if (propertySource instanceof EnumerablePropertySource) {
                EnumerablePropertySource<?> enumerablePropertySource = (EnumerablePropertySource<?>) propertySource;
                String[] propertyNames = enumerablePropertySource.getPropertyNames();
                // 遍历所有配置key:value
                for (String propertyName : propertyNames) {
                    String propertyVal = environment.getProperty(propertyName);
                    // 根据自己写的规则来解析那些配置是需要解密的
                    if (propertyVal != null && propertyVal.startsWith("ENC(") && propertyVal.endsWith(")")) {
                        // 解析得到加密的数据
                        String encryptedValue = propertyVal.substring(4, propertyVal.length() - 1);
                        // 调用自定义工具类解密
                        String decryptedValue = null;
                        decryptedValue = AESUtil.decryptFromString(encryptedValue, Mode.CBC, Padding.ZeroPadding);

                        // 保存需要替换的配置
                        props.put(propertyName, decryptedValue);
                    }
                }
            }
        }
        // 添加解密后的属性到环境中
        if (!props.isEmpty()) {
            PropertiesPropertySource pps = new PropertiesPropertySource("decryptedProperties", props);
            environment.getPropertySources().addFirst(pps);
        }
    }

}

自定义加密工具类


public class AESUtil {
    /**
     * 16字节
     */
    private static final String ENCODE_KEY = "1234567812133211";
    private static final String IV_KEY = "0000000000088888";

    public static void main(String[] args) {
        String encryptData = encryptFromString("http://10.243.36.160", Mode.CBC, Padding.ZeroPadding);
        System.out.println("加密:" + encryptData);
        String decryptData = decryptFromString(encryptData, Mode.CBC, Padding.ZeroPadding);
        System.out.println("解密:" + decryptData);
    }

    public static String encryptFromString(String data, Mode mode, Padding padding) {
        AES aes;
        if (Mode.CBC == mode) {
            aes = new AES(mode, padding,
                    new SecretKeySpec(ENCODE_KEY.getBytes(), "AES"),
                    new IvParameterSpec(IV_KEY.getBytes()));
        } else {
            aes = new AES(mode, padding,
                    new SecretKeySpec(ENCODE_KEY.getBytes(), "AES"));
        }
        return aes.encryptBase64(data, StandardCharsets.UTF_8);
    }

    public static String decryptFromString(String data, Mode mode, Padding padding) {
        AES aes;
        if (Mode.CBC == mode) {
            aes = new AES(mode, padding,
                    new SecretKeySpec(ENCODE_KEY.getBytes(), "AES"),
                    new IvParameterSpec(IV_KEY.getBytes()));
        } else {
            aes = new AES(mode, padding,
                    new SecretKeySpec(ENCODE_KEY.getBytes(), "AES"));
        }
        byte[] decryptDataBase64 = aes.decrypt(data);
        return new String(decryptDataBase64, StandardCharsets.UTF_8);
    }

}

在resources/META-INF下新建文件spring.factories添加配置

org.springframework.boot.env.EnvironmentPostProcessor=\
包路径.DecryptEnvironmentPostProcessor

然后yml中需要加密的配置使用工具类加密后使用

需要加密的参数: ENC(加密后的值)

Spring Boot 是一个开发框架,用于构建基于Spring框架的Java应用程序。在使用Spring Boot时,我们可以使用多种方法对请求参数进行加密。 一种常见的方法是使用HTTPS来保护传输中的数据。HTTPS使用了SSL(Secure Sockets Layer)和TLS(Transport Layer Security)协议来加密HTTP请求和响应中的数据。我们可以在Spring Boot应用程序中配置HTTPS,使用自签名证书或者购买可信任的证书来建立安全的通信通道。 另一种方法是使用加密算法对请求参数进行加密。我们可以使用对称加密算法,如AES(Advanced Encryption Standard)或DES(Data Encryption Standard),将请求参数加密后再发送到服务器。服务器端接收到加密后的请求参数后,使用相同的密钥和算法进行解密,获取原始数据。 还有一种方法是使用数字签名来验证请求参数的完整性和真实性。我们可以使用非对称加密算法,如RSA(Rivest-Shamir-Adleman)算法,将请求参数进行签名。服务器端使用相应的公钥验证签名,确保请求参数未被篡改。 除此之外,还可以使用其他加密技术,如哈希函数或消息摘要算法对请求参数进行加密。哈希函数将请求参数转换成固定长度的摘要,服务器端接收到请求参数后,将其进行相同的哈希运算,并与接收到的摘要进行比较,以验证参数的完整性。 在Spring Boot中,我们可以使用相应的加密算法和工具类来实现以上加密方法,保护请求参数的安全性。需要根据具体的需求和场景选择适合的加密方式。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值