tarjeta - quitar cifrado android
El cifrado/descifrado de archivos Android AES-128 es muy lento. ¿Cómo puedo aumentar la velocidad? (2)
Una cosa que hace que tu código funcione lento es el tamaño de tu buffer:
byte[] d = new byte[8];
Deberías aumentarlo en unos pocos órdenes de magnitud si quieres que funcione rápido. Dado el tamaño de tus archivos, te sugiero usar al menos 1 MB, pero hoy en día puedes establecerlo de manera realista en unos pocos MB, incluso en Android. Intenta cambiarlo a:
byte[] d = new byte[1024 * 1024];
y háganos saber cuánto mejoró eso la velocidad.
Estoy desarrollando una aplicación para Android que protege imágenes y videos como Vaulty y Keep safe . Estoy tratando de utilizar la técnica de cifrado / descifrado AES-128 para almacenar imágenes y videos. Lo intenté tomando 3 imágenes de muestra de tamaño 5.13, 4.76 y 5.31, respectivamente. Pero el tiempo que consume encriptar es 25s, 22s, 27s respectivamente y el tiempo para descifrar es 31s, 30s, 34s respectivamente. Lo estoy probando en HTC One X.
Tal velocidad no será factible para mi aplicación ya que los usuarios podrán desplazarse y ver imágenes rápidamente sin interrupción. ¿Puede sugerirme cómo puedo mejorar el rendimiento (velocidad) o debo cambiar a otros algoritmos? ¿Puede sugerirme alguna otra técnica a través de la cual pueda cifrar / descifrar imágenes y videos rápidamente sin comprometer demasiado la seguridad?
Probé con Vaulty y Keep safe , y son muy rápidos. Se dice que Vaulty usa AES-256, pero sigue siendo muy rápido y sensible en términos de encriptación y visualización de imágenes. ¿Cómo es posible que vaulty sea tan rápido usando AES-256?
El código que estoy usando es:
static void encrypt(String filename) throws IOException, NoSuchAlgorithmException,
NoSuchPaddingException, InvalidKeyException {
// Here you read the cleartext.
File extStore = Environment.getExternalStorageDirectory();
startTime = System.currentTimeMillis();
Log.i("Encryption Started",extStore + "/5mbtest/"+filename);
FileInputStream fis = new FileInputStream(extStore + "/5mbtest/"+filename);
// This stream write the encrypted text. This stream will be wrapped by
// another stream.
FileOutputStream fos = new FileOutputStream(extStore + "/5mbtest/"+filename+".aes", false);
// Length is 16 byte
SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(),
"AES");
// Create cipher
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
cipher.init(Cipher.ENCRYPT_MODE, sks);
// Wrap the output stream
CipherOutputStream cos = new CipherOutputStream(fos, cipher);
// Write bytes
int b;
byte[] d = new byte[8];
while ((b = fis.read(d)) != -1) {
cos.write(d, 0, b);
}
// Flush and close streams.
cos.flush();
cos.close();
fis.close();
stopTime = System.currentTimeMillis();
Log.i("Encryption Ended",extStore + "/5mbtest/"+filename+".aes");
Log.i("Time Elapsed", ((stopTime - startTime)/1000.0)+"");
}
static void decrypt(String filename) throws IOException, NoSuchAlgorithmException,
NoSuchPaddingException, InvalidKeyException {
File extStore = Environment.getExternalStorageDirectory();
Log.i("Decryption Started",extStore + "/5mbtest/"+filename+".aes");
FileInputStream fis = new FileInputStream(extStore + "/5mbtest/"+filename+".aes");
FileOutputStream fos = new FileOutputStream(extStore + "/5mbtest/"+"decrypted"+filename,false);
SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(),
"AES");
// Create cipher
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
cipher.init(Cipher.DECRYPT_MODE, sks);
startTime = System.currentTimeMillis();
CipherInputStream cis = new CipherInputStream(fis, cipher);
int b;
byte[] d = new byte[8];
while ((b = cis.read(d)) != -1) {
fos.write(d, 0, b);
}
stopTime = System.currentTimeMillis();
Log.i("Decryption Ended",extStore + "/5mbtest/"+"decrypted"+filename);
Log.i("Time Elapsed", ((stopTime - startTime)/1000.0)+"");
fos.flush();
fos.close();
cis.close();
}
Use un buffer más grande como lo sugiere @MikeLaren, y también envuelva FileOutputStream
en un BufferedOutputStream.
Al descifrar, FileInputStream
en un BufferedInputStream
. O haga ambas cosas en ambos casos: no se hace daño.
No hay necesidad de tamaños de búfer heroicos como un megabyte: 8k o 32k es suficiente.