1.1、加密工具类
java
package as.g.common.tools;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import java.security.Key;
import java.security.SecureRandom;
public class MyEncDecTools {
private static Key key;
private static String KEY_STR = "mykey";
static {
try {
KeyGenerator generator = KeyGenerator.getInstance("DES");
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.setSeed(KEY_STR.getBytes());
generator.init(secureRandom);
key = generator.generateKey();
generator = null;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
//对字符串进行加密,返回BASE64的加密字符串
public String getEncryptString(String str){
BASE64Encoder base64Encoder = new BASE64Encoder();
try{
byte[] strBytes = str.getBytes("UTF-8");
Cipher cipher = Cipher.getInstance("DES");
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] encryptStrBytes = cipher.doFinal(strBytes);
return base64Encoder.encode(encryptStrBytes);
}
catch (Exception e){
throw new RuntimeException(e);
}
}
//对BASE64加密字符串进行解密
public static String getDecryptString(String str){
BASE64Decoder base64Decoder = new BASE64Decoder();
try{
byte[] strBytes = base64Decoder.decodeBuffer(str);
Cipher cipher = Cipher.getInstance("DES");
cipher.init(Cipher.DECRYPT_MODE, key);
byte[] encryptStrBytes = cipher.doFinal(strBytes);
return new String(encryptStrBytes,"UTF-8");
}
catch (Exception e){
throw new RuntimeException(e);
}
}
}
1.2、数据库配置文件
1.2.1、properties
#gDB.properties
1.2.2、xml
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName">
<value>oracle.jdbc.driver.OracleDriver</value>
</property>
<property name="url">
<value>jdbc:oracle:thin:@192.168.1.1:1521:gdev</value>
</property>
<property name="username">
<value>guser</value>
</property>
<property name="password">
<value>gpassw0rd</value>
</property>
</bean>
1.3、解密工具类
1.3.1、重写org.apache.commons.dbcp.BasicDataSource
as.g.common.tools.MyBasicDataSource.java
1.3.2、重写org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
as.g.common.tools.MyPropertyPlaceholderConfigurer.java