本文主要是介绍AES加密编码格式用base64,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.今天我有个朋友说他们公司用上面这个加密跟编码的,但是他解析出来老是乱码,然后我就看了看帮他改了改,记录一下,顺便有朋友也遇到这样问题的时候可以看看,代码如下:
**
* 项目名称 FileOutputStreamClass
* 包名 otouzi.com.fileoutputstreamclass
* 类名 AESBase
* 时间 2018/8/17
*/
public class AESBase {
private static final String IV_STRING = "shoushoutao*.+Ap";
private static final String KEY = "shoushoutao*.+Ap";
public static String encryptAES(String content) throws InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException, UnsupportedEncodingException, InvalidAlgorithmParameterException, IllegalBlockSizeException, BadPaddingException {
byte[] byteContent = content.getB
这篇关于AES加密编码格式用base64的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!