赞
踩
在项目中遇到的加密报错:java.security.NoSuchAlgorithmException:Cannot find any provider supporting AES/CBC/PKCS7Padding
解决方案:
1.在加密的方法中添加一个静态代码块
static { try { Security.addProvider(new BouncyCastleProvider()); } catch (Exception e) { e.printStackTrace(); } }
2.其中有一个 BouncyCastleProvider 需要添加一个jar包。
jar包的地址为一个大哥博客 : https://blog.csdn.net/libusi001/article/details/108652085
其中主要借鉴于一位老哥的博客下的评论里的大哥
这是博客地址:https://blog.csdn.net/qq_43225978/article/details/94459412
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。