加密/解密最后64 KB的文件

时间:2013-09-25 06:51:23

标签: java android encryption

我正在尝试加密/解密文件的最后64 KB,但加密文件中缺少其中一个文件夹。在这里,我试图在zip文件上实现。目前这里有5个文件夹在zip文件中,在结果zip中,它只显示两个文件夹。其中一个文件夹丢失了。我认为它缺少一些字节。这是我的代码:

static void encryptLast64KB(String inputPath, String outputPath)
throws IOException, NoSuchAlgorithmException,
NoSuchPaddingException, InvalidKeyException {


    File myFile = new File(inputPath);
    FileInputStream fis = new FileInputStream(myFile);

    FileOutputStream fos = new FileOutputStream(outputPath);
    BufferedOutputStream bus = new BufferedOutputStream(fos);

    SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(),
            "AES");

    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, sks);

    int b = 0;
    byte[] d = new byte[65536];

    int offset = 0;

    byte[] encVal = null;

    while ((b = fis.read(d)) != -1) {

        offset = offset + b;
        Log.d(TAG, "Offset: "+offset);
        Log.d(TAG, "b: "+b);
        if((offset)>=myFile.length())
        {
            Log.d(TAG, "last 64 Kbytes");

            try {
                encVal = cipher.doFinal(d);
                Log.d(TAG, "encVal: "+encVal);
                bus.write(encVal);
            } catch (Exception e) {
                e.printStackTrace();
            }

        }
        else
        {
            Log.d(TAG, "rest of the bytes");
            bus.write(d);
        }


        bus.flush();
        bus.close();
        fis.close();
    }


}

请检查..

将帖子 添加了用于解密最后64 KB的解密代码。

 static byte[] decryptLast64KBytes(String inputPath) throws IOException,
NoSuchAlgorithmException, NoSuchPaddingException,
InvalidKeyException {

        FileInputStream fis = new FileInputStream(inputPath);

        SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
        Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
        byte[] iv = new byte[] { '3', 'd', '0', 'c', 'd', '7', 'A', '9', '7', 'e', '2', '0', 'b', 'x', 'g', 'y' };
        IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);
        try {
            cipher.init(Cipher.DECRYPT_MODE, sks, ivParameterSpec);
        } catch (InvalidAlgorithmParameterException e) {
            e.printStackTrace();
        }
        CipherInputStream cis = new CipherInputStream(fis, cipher);

        int b;
        byte[] d = new byte[1024];
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        int count =0;

        int offset = 0;
        while((b = fis.read(d)) != -1) {
            offset = offset + b;
            Log.d(TAG, "Offset: "+offset);
            Log.d(TAG, "b: "+b);
            if((offset)>=fis.available())
            {
                Log.d(TAG, "last 64 Kbytes");
                while((b = cis.read(d, offset, offset+b))!=-1)
                {
                    bos.write(d);
                    offset = offset + b;
                }

            }
            else
            {
                Log.d(TAG, "rest of the bytes");
                bos.write(d);
            }

        }

        byte[] completeBytes = bos.toByteArray();
        cis.close();
        return completeBytes;

}

2 个答案:

答案 0 :(得分:2)

我认为如果你想要加密不是8字节块的倍数的文本消息,则文本消息必须填充并附加字节,以使文本消息为8的倍数 - 块。

尝试

Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");

使用初始化向量:

byte[] iv = new byte[] { '3', 'd', '0', 'c', 'd', '7', 'A', '9', '7', 'e', '2', '0', 'b', 'x', 'g', 'y' };
IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);
cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec, ivParameterSpec);

小评论:根据我的说法,你的字节数组太大,1024应该没问题

byte[] bytes = new byte[1024];

请注意,您可以使用CipherOutputStream和CipherInputStream来隐藏加密和写入/读取字节的详细信息。我实际上会建议这些要求。

FileInputStream fis = new FileInputStream(inputFileName);
CipherInputStream cis = new CipherInputStream(fis, cipher);

答案 1 :(得分:1)

您的代码不会加密最后的64KB。它加密最后一个块,无论其大小如何,都是由所有先前的读取产生的。如果你想要最后的64KB,天知道为什么,你必须寻找()或跳过()到适当的值,也就是说文件长度减去64KB。