fix:数据库密码加密处理

master
wangxy 11 months ago
parent 9bb2e2cd4e
commit 6aefd41520

@ -67,6 +67,13 @@
<artifactId>ruoyi-generator</artifactId> <artifactId>ruoyi-generator</artifactId>
</dependency> </dependency>
<!--加密-->
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
</dependencies> </dependencies>
<build> <build>

@ -7,8 +7,10 @@ spring:
# 主库数据源 # 主库数据源
master: master:
url: jdbc:mysql://192.168.254.123:3306/zhky?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 url: jdbc:mysql://192.168.254.123:3306/zhky?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root #username: root
password: qwer1234 #password: qwer1234
username: ENC(ElFzIjuV3codlxGotvqqyA==)
password: ENC(aM81j4MP4WJC4ZQBNlDntx0jKsP3wwQZ)
# 从库数据源 # 从库数据源
slave: slave:
# 从数据源开关/默认关闭 # 从数据源开关/默认关闭

@ -154,3 +154,8 @@ aj:
aes-status: true aes-status: true
# 滑动干扰项(0/1/2) # 滑动干扰项(0/1/2)
interference-options: 0 interference-options: 0
#解析密钥
jasypt:
encryptor:
password: BUSINESS

@ -0,0 +1,23 @@
package com.ruoyi;
import org.jasypt.encryption.pbe.PooledPBEStringEncryptor;
import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig;
public class EncFactory {
public static void main(String[] args) {
String securityKey = "BUSINESS"; // 加密秘钥
String data = "qwer1234"; // 需要加密的字符串
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
SimpleStringPBEConfig config = new SimpleStringPBEConfig();
config.setPassword(securityKey);
config.setAlgorithm("PBEWithMD5AndDES");
config.setPoolSize("1");
config.setStringOutputType("base64");
encryptor.setConfig(config);
System.out.println("ENC("+ encryptor.encrypt(data) +")");
System.out.println(encryptor.decrypt("t3TY7+QFjQNRv8N833J1PRV6+/QTBwJP"));
}
}
Loading…
Cancel
Save