You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyp-web/hyp-admin/src/test/java/com/hyp/EncFactory.java

24 lines
842 B

package com.hyp;
import org.jasypt.encryption.pbe.PooledPBEStringEncryptor;
import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig;
public class EncFactory {
public static void main(String[] args) {
String securityKey = "NBPLUS"; // 加密秘钥
String data = "wangxy123@"; // 需要加密的字符串
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"));
}
}