使用RC4算法逐行加密后,解密仅产生正确的一行

时间:2019-04-17 08:55:20

标签: java encryption stream-cipher

我必须使用RC4算法逐行加密文件。

加密整个文件并解密整个文件会得到原始文件。

当我尝试一次一次读取文件时,将其加密,然后将加密后的行写入文件,解密生成的文件只会得到一个正确的行,即原始文件的第一行。

我尝试使用字节数组读取文件并将其提供给rc4例程,该字节数组的大小是密钥长度的倍数,但结果相同。这是我的尝试:

try
{
    BufferedReader br = new BufferedReader((new FileReader(fileToEncrypt)));                    
    FileOutputStream fos = new  FileOutputStream("C:\\Users\\nikaselo\\Documents\\Encryption\\encrypted.csv", true);
    File file = new File("C:\\Users\\nikaselo\\Documents\\Encryption\\encrypted.csv");
 // encrypt
    while ((line = br.readLine()) != null) 
    {
        byte [] encrypt = fed.RC4(line.getBytes(), pwd);

        if (encrypt != null) dos.write(encrypt);
            fos.flush();
    }

    fos.close();

// test decrypt
    FileInputStream fis = null;
    fis = new FileInputStream(file);
    byte[] input = new byte[512];
    int bytesRead;
    while ((bytesRead = fis.read(input)) != -1)
    {
        byte [] de= fed.RC4(input, pwd);
        String result = new String(de);
        System.out.println(result);
    }
}   
catch (Exception ex) 
{                                
    ex.printStackTrace();
}

这是我的RC4函数

public  byte []  RC4 (byte [] Str, String Pwd) throws Exception
{
    int[] Sbox = new int [256] ;
    int A, B,c,Tmp;;

    byte [] Key = {};
    byte [] ByteArray = {};

    //KEY
    if ((Pwd.length() == 0 || Str.length == 0)) 
    {
        byte [] arr = {};
        return arr;
    }
    if(Pwd.length() > 256) 
    {
        Key  = Pwd.substring(0, 256).getBytes();
    }
    else 
    {
        Key = Pwd.getBytes();
    }
    //String
    for( A = 0 ; A <= 255; A++ ) 
    {
        Sbox[A] = A;    
    }
    A = B = c= 0;
    for  (A = 0; A <= 255; A++) 
    {
        B = (B + Sbox[A] + Key[A % Pwd.length()]) % 256;    
        Tmp = Sbox[A];
        Sbox[A] = Sbox[B];
        Sbox[B] = Tmp;
    }

    A = B = c= 0;
    ByteArray = Str;
    for (A = 0; A <= Str.length -1 ; A++)
    {   
        B = (B + 1) % 256;
        c = (c + Sbox[B]) % 256;
        Tmp =  Sbox[B];
        Sbox[B] = Sbox[c];
        Sbox[c] = Tmp;
        ByteArray[A] = (byte) (ByteArray[A] ^ (Sbox[(Sbox[B] + Sbox[c]) % 256]));           
    }

    return ByteArray;
}

运行此命令可以给我一个清晰的句号,而其余的则难以理解。

1 个答案:

答案 0 :(得分:1)

您正在逐行加密,但是您尝试以512字节块进行解密。

您看到的选择是:

  1. 以固定大小的块进行加密和解密
  2. 将每行填充到512字节(以及大于512字节的拆分行)
  3. 引入定界符。这将很棘手,因为密文中可能会出现任何分隔符,因此您应该对每条加密行进行base64编码,并使用换行符将它们分开。

大概1是最简单的(也是真正加密中使用的那个),但是如果您必须逐行进行,即使这会引入一个漏洞,我也会选择3。 RC4不再被认为是安全的。