论坛首页 入门技术论坛

java版AES文件加密速度问题

浏览 6260 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-07-06  
   简单的一个java版的AES文件加密demo, 运行正常, 但文件一大速度就会很慢,不知道是否能优化一下,以提高增快加密的速度或许是我的代码写法有问题, 希望各位大俠指正

  
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.security.SecureRandom;

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;

public class AES {

// 加密文件
public static void encryptfile(String pwd, File fileIn) throws Exception {
try {
            //读取文件
FileInputStream fis = new FileInputStream(fileIn);
byte[] bytIn = new byte[(int) fileIn.length()];
for (int i = 0; i < fileIn.length(); i++) {
bytIn[i] = (byte) fis.read();
}
            //AES加密
KeyGenerator kgen = KeyGenerator.getInstance("AES");
kgen.init(128, new SecureRandom(pwd.getBytes()));
SecretKey skey = kgen.generateKey();
byte[] raw = skey.getEncoded();
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
            //写文件
byte[] bytOut = cipher.doFinal(bytIn);
FileOutputStream fos = new FileOutputStream(fileIn.getPath()
+ ".aes");
for (int i = 0; i < bytOut.length; i++) {
fos.write((int) bytOut[i]);
}
fos.close();
fis.close();
} catch (Exception e) {
throw new Exception(e.getMessage());
}
}
public static void main(String[] args) throws Exception {
AES aes = new AES();
String pwd = "123";
File file = new File("d:/xxx.doc");
aes.encryptfile(pwd, file);
}
}
   发表时间:2007-07-07  
几点问题:
1.输入输出没有加Buffer.
2.没有用异步处理。
0 请登录后投票
   发表时间:2007-07-07  
还有byte[] bytIn = new byte[(int) fileIn.length()];
文件大了,内存的占用很厉害。
建议用固定大小的缓冲区代替。
0 请登录后投票
   发表时间:2007-07-09  
for (int i = 0; i < bytOut.length; i++) {
fos.write((int) bytOut[i]);
}
你这样一个一个byte读写是很慢的

建议你用这2个方法
write(byte[] b)
将指定字节数组中 b.length 字节写入当前文件输出流。
write(byte[] b , int off, int len)
将指定字节数组中以偏移量 off开始的 len个字节写入当前文件输出流。

0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics