Search found 4 matches
- Sat Mar 17, 2012 1:34 am
- Forum: AES Crypt
- Topic: AESCrypt - Very slow file encryption
- Replies: 6
- Views: 11259
Re: AESCrypt - Very slow file encryption
After that, I use the VLCJ to run the file: / home / dinho / medias / tmp_video.avi
- Sat Mar 17, 2012 1:29 am
- Forum: AES Crypt
- Topic: AESCrypt - Very slow file encryption
- Replies: 6
- Views: 11259
Re: AESCrypt - Very slow file encryption
This:
String args1[] = new String[4];
args1[0] = "d"; // decrypt
args1[1] = "pass";
args1[2] = "/home/dinho/midias/video.avi";
args1[3] = "/home/dinho/midias/tmp_video.avi";
AESCrypt aes;
try {
aes = new AESCrypt(false, args1[1]);
aes.criptografar(args1);
} catch ...
String args1[] = new String[4];
args1[0] = "d"; // decrypt
args1[1] = "pass";
args1[2] = "/home/dinho/midias/video.avi";
args1[3] = "/home/dinho/midias/tmp_video.avi";
AESCrypt aes;
try {
aes = new AESCrypt(false, args1[1]);
aes.criptografar(args1);
} catch ...
- Sat Mar 17, 2012 12:18 am
- Forum: AES Crypt
- Topic: AESCrypt - Very slow file encryption
- Replies: 6
- Views: 11259
Re: AESCrypt - Very slow file encryption
Hi paulej, thanks for your answer
I would like to use without creating a temporary file. Do you have an example?
Tks
I would like to use without creating a temporary file. Do you have an example?
Tks
- Fri Mar 16, 2012 9:10 pm
- Forum: AES Crypt
- Topic: AESCrypt - Very slow file encryption
- Replies: 6
- Views: 11259
AESCrypt - Very slow file encryption
Dear, I'm using AESCrypt to keep the encrypted music and videos in my Player.
I used the following function to encrypt all media directory
public static void encryptMusic(){
String args1[] = new String[4];
args1[0] = "e"; // encrypt
args1[1] = "pass";
AESCrypt aes;
File filecryptss = new ...
I used the following function to encrypt all media directory
public static void encryptMusic(){
String args1[] = new String[4];
args1[0] = "e"; // encrypt
args1[1] = "pass";
AESCrypt aes;
File filecryptss = new ...