Я должен зашифровать и расшифровать файл в Android, и зашифрованный файл (изображение, видео) можно расшифровать и с другого устройства.
Я шифрую и дешифрую в том же устройстве, он работает нормально, но когда япереключить пользователя устройства зашифрованный файл для дешифрования его показать мне ошибку в doFinal ()
javax.crypto.IllegalBlockSizeException: последний блок не завершен в дешифровании
любой способзашифровать файл с одного устройства и получить доступ ко всем другим устройствам, например, шифрование пароля в android.и используя этот ключ пароля к другому устройству, мы получаем доступ к информации о файле.
// code
private boolean encrypt() {
try {
String path = Environment.getExternalStorageDirectory() + File.separator + "Download/tools.png";
String pathe = Environment.getExternalStorageDirectory() + File.separator + "Download/tools.png";
byte[] fileData = FileUtils.readFile(path);
byte[] encodedBytes = EncryptDecryptUtils.encode(EncryptDecryptUtils.getInstance(this).getSecretKey(), fileData);
FileUtils.saveFile(encodedBytes, pathe);
return true;
} catch (Exception e) {
Toast.makeText(this, "File Encryption failed.\nException: " + e.getMessage(), Toast.LENGTH_SHORT).show();
}
return false;
}
/**
* Decrypt and return the decoded bytes
*
* @return
*/
private byte[] decrypt() {
try {
String pathe = Environment.getExternalStorageDirectory() + File.separator + "Download/tools.png";
byte[] fileData = FileUtils.readFile(pathe);
byte[] decryptedBytes = EncryptDecryptUtils.decode(EncryptDecryptUtils.getInstance(this).getSecretKey(), fileData);
return decryptedBytes;
} catch (Exception e) {
Toast.makeText(this, "File Decryption failed.\nException: " + e.getMessage(), Toast.LENGTH_SHORT).show();
}
return null;
}
Нижекод класса EncryptDecryptUtils
public static byte[] encode(SecretKey yourKey, byte[] fileData)
throws Exception {
byte[] data = yourKey.getEncoded();
SecretKeySpec skeySpec = new SecretKeySpec(data, 0, data.length, EncoDecode.KEY_SPEC_ALGORITHM);
Cipher cipher = Cipher.getInstance(EncoDecode.CIPHER_ALGORITHM, EncoDecode.PROVIDER);
cipher.init(Cipher.ENCRYPT_MODE, skeySpec, new IvParameterSpec(new byte[cipher.getBlockSize()]));
return cipher.doFinal(fileData);
}
public static byte[] decode(SecretKey yourKey, byte[] fileData)
throws Exception {
byte[] decrypted;
Cipher cipher = Cipher.getInstance(EncoDecode.CIPHER_ALGORITHM, EncoDecode.PROVIDER);
cipher.init(Cipher.DECRYPT_MODE, yourKey, new IvParameterSpec(new byte[cipher.getBlockSize()]));
Log.d("value ", "decode() returned: " + cipher.toString());
decrypted = cipher.doFinal(fileData);
Log.d("", "decode() returned: " + decrypted.length);
return decrypted;
}
public SecretKey getSecretKey() {
String encodedKey = "8qkWUsFfdY8yy5lIad4rjw==";
byte[] decodedKey = Base64.decode(encodedKey, Base64.NO_WRAP);
SecretKey originalKey = new SecretKeySpec(decodedKey, 0, decodedKey.length, EncoDecode.KEY_SPEC_ALGORITHM);
return originalKey;
}