The encryption algorithm is not strong enoug

使用加密解密出现以下问题的解决办法:

1、 The encryption algorithm is not strong enoug
The encryption algorithm is not strong enoug

 

 原因:因为我们没有在bootstrap.properties配置文件中配置密钥。

解决办法:在bootstrap.properties文件中配置密钥:encrypt.key=hdnspace12334566

2、Unable to initialize due to invalid secret key
The encryption algorithm is not strong enoug

 

 

控制台出现:java.security.InvalidKeyException: Illegal key size
The encryption algorithm is not strong enoug

 

 

原因:这是因为JRE中自带的JCE功能,默认使用的是有长度限制的版本,我们要将其替换成不限长度的JCE版本。

解决办法:通过下载jce8下载, 下载之后进行解压,有如下三个文件:
The encryption algorithm is not strong enoug

 

 


我们将local_policy.jar和US_export_policy.jar两个文件复制到jre目录下的security目录中(如:E:\java_dev\Java\jdk1.8.0_121\jre\lib\security),覆盖掉默认的内容就OK了!

上一篇:如何在C#中的AES256加密和Java中的解密期间处理BadPaddingException


下一篇:python加密:使用公共密钥加密会话密钥