Websphere 下 AES解密失败但不报错 websphere算法sun解密
由于was上本身提供加密解密的方法,所以在was上进行部署的时候,需要指定加密解密的提供者,默认的是使用was本身的。如果使用sun的加密解密方法,需要将sun本身提供者注册一下。否则如果加密使用是sun的加密算法,解密如果不指定sun提供者,则解密会使用was本身的解密算法,这样就会报错。由于加密是单独应用程序上运行的,而且是使用的jdk,所以会直接使用sun提供的加密算法,因而解密必须也是sun提供的解密算法,
在SecurityCode这个类中的解密算法中添加红色字体,同时为了防止在linux上参数的随机数不同,随机数也相应的修改一下吧。
public static byte[] aesDecrypt(byte[] content, String password) throws Exception{
try{
KeyGenerator kgen = KeyGenerator.getInstance("AES");
Security.addProvider(new sun.security.provider.Sun());
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG",new sun.security.provider.Sun());
secureRandom.setSeed(password.getBytes());
kgen.init(128, secureRandom);
SecretKey secretKey = kgen.generateKey();
byte[] enCodeFormat = secretKey.getEncoded();
SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
Cipher cipher = Cipher.getInstance("AES");// 创建密码器
cipher.init(Cipher.DECRYPT_MODE, key);// 初始化
byte[] result = cipher.doFinal(content);
return result; // 加密
}catch (NoSuchAlgorithmException e){
e.printStackTrace();
}catch (NoSuchPaddingException e){
e.printStackTrace();
}catch (InvalidKeyException e){
e.printStackTrace();
}catch (IllegalBlockSizeException e){
e.printStackTrace();
}catch (BadPaddingException e){
e.printStackTrace();
}
return null;
}