解決Linux下AES解密失敗
前段時間,用了個AES加密解密的方法,詳見上篇部落格AES加密解密。加解密方法在window上測試的時候沒有出現任何問題,將加密過程放在安卓上,解密釋出到Linux伺服器的時候,安卓將加密的結果傳到Linux上解密的時候卻總是失敗,讓使用者不能成功登入,經過檢查,測試後,發現AES在Linux上解密失敗,出現錯誤:
javax.crypto.BadPaddingException: Given final block not properly padded
現在來回顧下自己的解決思路:
加密過程是在安卓上,解密是在Linu上,會不會是因為環境的不同,在加密過程中產生的二進位制和在解密過程中產生的二進位制不一樣呢?可是在經過聯調後,比對二進位制,發現沒有問題。那問題是在哪裡呢?
繼續聯調, 仔細比對加密和解密過程中每一步產生的結果,發現了問題:
Linux解密端:
發現這裡的cipher下的 firstService是有值的。
安卓加密端:
發現這裡的cipher下的 firstService是沒有值的。
百度後發現:
加密解密方法的唯一差別是Cipher物件的模式不一樣,這就排除了程式寫錯的可能性。因為錯誤資訊是在宜昌中出現的,其大概意思是:提供的字塊不符合填補的。什麼意思呢?原來在用加密的時候,最後一位長度不足,它會自動補足,那麼在我們進行位元組陣列到字串的轉化過程中,可以把它填補的不可見字元改變了,所以系統丟擲異常。
問題找到,怎麼解決呢?方式如下:
package ICT.base.rest.services.app;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
public class AESDecodeUtils {
public static void main(String[] args) {
String content = "g25";
String pwd = "8182838485";
String addPwd = "123456";
// 加密
System.out.println("加密前content:" + content);
byte[] enAccount = encrypt(content, addPwd);
byte[] enPwd = encrypt(pwd, addPwd);
String encryptResultStr = parseByte2HexStr(enAccount);
String parseByte2HexStr2 = parseByte2HexStr(enPwd);
System.out.println("加密後content:" + encryptResultStr);
// 解密 ——賬號/身份證號
byte[] accountFrom = AESDecodeUtils.parseHexStr2Byte(encryptResultStr);
byte[] deAccount = AESDecodeUtils.decrypt(accountFrom, addPwd);
String userAccount = new String(deAccount);
System.out.println("解密後content:" + userAccount);
// 解密——密碼
byte[] pwdFrom = AESDecodeUtils.parseHexStr2Byte(parseByte2HexStr2);
byte[] deUserPwd = AESDecodeUtils.decrypt(pwdFrom, addPwd);
String userPwd = new String(deUserPwd);
// System.out.println(userPwd);
}
/**
* AES加密
*
* @param content
* 要加密的內容
* @param password
* 加密使用的金鑰
* @return 加密後的位元組陣列
*/
public static byte[] encrypt(String content, String password) {
SecureRandom random = null;
try {
<span style="color:#ff0000;">random = SecureRandom.getInstance("SHA1PRNG");
random.setSeed(password.getBytes());</span>
} catch (NoSuchAlgorithmException e1) {
e1.printStackTrace();
}
try {
KeyGenerator kgen = KeyGenerator.getInstance("AES");
// kgen.init(128, new SecureRandom(password.getBytes()));
<span style="color:#ff0000;">kgen.init(128, random);</span>
SecretKey secretKey = kgen.generateKey();
byte[] enCodeFormat = secretKey.getEncoded();
SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
Cipher cipher = Cipher.getInstance("AES");// 建立密碼器
byte[] byteContent = content.getBytes("utf-8");
cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化
byte[] result = cipher.doFinal(byteContent);
return result; // 加密
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (NoSuchPaddingException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IllegalBlockSizeException e) {
e.printStackTrace();
} catch (BadPaddingException e) {
e.printStackTrace();
}
return null;
}
/**
* 將二進位制轉換成16進位制 加密
*
* @param buf
* @return
*/
public static String parseByte2HexStr(byte buf[]) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < buf.length; i++) {
String hex = Integer.toHexString(buf[i] & 0xFF);
if (hex.length() == 1) {
hex = '0' + hex;
}
sb.append(hex.toUpperCase());
}
return sb.toString();
}
/**
* 解密
*
* @param content
* 待解密內容
* @param password
* 解密金鑰
* @return
*/
public static byte[] decrypt(byte[] content, String password) {
SecureRandom random = null;
try {
<span style="color:#ff0000;">random = SecureRandom.getInstance("SHA1PRNG");
random.setSeed(password.getBytes());</span>
} catch (NoSuchAlgorithmException e1) {
e1.printStackTrace();
}
try {
KeyGenerator kgen = KeyGenerator.getInstance("AES");
// kgen.init(128, new SecureRandom(password.getBytes()));
<span style="color:#ff0000;">kgen.init(128, random);</span>
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;
}
/**
* 將16進位制轉換為二進位制
*
* @param hexStr
* @return
*/
public static byte[] parseHexStr2Byte(String hexStr) {
if (hexStr.length() < 1)
return null;
byte[] result = new byte[hexStr.length() / 2];
for (int i = 0; i < hexStr.length() / 2; i++) {
int high = Integer.parseInt(hexStr.substring(i * 2, i * 2 + 1), 16);
int low = Integer.parseInt(hexStr.substring(i * 2 + 1, i * 2 + 2),
16);
result[i] = (byte) (high * 16 + low);
}
return result;
}
}
將加密放到安卓端,解密放大Linux上後,如下:
此時cipher下的 firstService不再是Null,都有了值
安卓加密端:
Linux解密端:
總結:
AES是對稱加密,解密端改變解密過程,同樣,加密端的加密過程也會改變,不管怎麼著,調程式還是得要有耐心,用一個東西,其簡單基本的原理還是要知道的。
相關文章
- Arch linux下安裝bochs失敗解決Linux
- 解決linux rz傳輸失敗Linux
- pyhanlp下載失敗解決方法HanLP
- Linux下python pip install失敗LinuxPython
- 對USB驅動下載失敗的解決
- go get下載包失敗的解決方案Go
- Linux解決MySQL-python安裝失敗問題LinuxMySqlPython
- AES 加密&解密加密解密
- AES加密解密加密解密
- AES CBC 加密解密加密解密
- 解決 Windows 下 Homestead 建立軟連線失敗問題Windows
- 解決:連線遠端redis服務失敗(在linux部署)RedisLinux
- npm安裝失敗解決方案NPM
- git clone失敗問題解決Git
- anaconda安裝失敗解決方法
- 解決Autowired注入失敗為nullNull
- VScode 更新失敗解決辦法VSCode
- dbsnmp啟動失敗解決方法
- npm install 失敗解決辦法NPM
- python tarfile解壓失敗怎麼解決Python
- mongodb啟動失敗問題解決MongoDB
- anaconda prompt開啟失敗解決方法
- python用install失敗怎麼解決Python
- redis lRem 刪除失敗?(已解決)RedisREM
- NPM run dev 失敗解決辦法NPMdev
- npm install安裝失敗解決方法NPM
- mysql(mariadb)啟動失敗解決方法MySql
- Token驗證失敗的解決方法
- 解決Wireshark安裝Npcap元件失敗PCA元件
- hbase啟動失敗問題解決
- 【Python】pydot安裝失敗解決方法Python
- Win10系統下Virtualbox安裝失敗的解決方法Win10
- windows10系統下apache啟動失敗的解決方法WindowsApache
- 關於Gradle編譯時下載依賴失敗解決方法Gradle編譯
- Python AES 加密和解密(qbit)Python加密解密
- golang AES-CBC 加密解密Golang加密解密
- python AES-CBC 加密解密Python加密解密
- kubernetes映象拉取失敗解決方法 ErrImagePull
- 關於npm install失敗的解決方法NPM