提问者:小点点

加密/解密与RSA充气城堡无法正常工作


我正在尝试使用Bouncy Castle的RSAEngine库加密/解密,密钥长度为2048位。我能够创建密钥,存储在不同的文件中并从文件中获取,但是当我解密图像时,它会使一些我不知道的东西显示不正确。文件创建正确,我认为问题出在加密和/或解密时的process Block方法。加密代码如下:

InputStream clearTextFile;
    FileOutputStream textFileProcessed=new FileOutputStream(fileName);
            //getKey is a method I implemented and works correctly
    RSAKeyParameters key=getKey(keyFileName);
    RSAEngine rsaEngine=new RSAEngine();
    rsaEngine.init(true,key);           
    clearTextFile=new FileInputStream(nameClearTextFile);
    byte[] bytesReaded;
    int nBytesReaded;
    int inputBlockSize=rsaEngine.getInputBlockSize();
    do
    {
        bytesReaded = new byte[inputBlockSize];
        nBytesReaded=clearTextFile.read(bytesReaded);
        if(nBytesReaded>-1)
        {       //This is for the last block if it's not 256 byte length
            if(nBytesReaded<inputBlockSize)
            {
                byte[] temp=new byte[nBytesReaded];
                for(int i=0;i<nBytesReaded;i++)
                {
                    temp[i]=bytesReaded[i];
                }
                byte[] encryptedText=rsaEngine.processBlock(temp,0,nBytesReaded);
                textFileProcessed.write(encryptedText);
            }
            else
            {
                byte[] encryptedText=rsaEngine.processBlock(bytesReaded,0,inputBlockSize);
                textFileProcessed.write(encryptedText); 
            }
        }
    }while(nBytesReaded>-1);
    textFileProcessed.flush();
    textFileProcessed.close();
    textFileProcessed.close();

并解密:

InputStream encryptedTextFile=new FileInputStream(nameOfFile);
    OutputStream decryptedTextFile=new FileOutputStream(nameOfFile);
    RSAKeyParameters key=getKey(nameKeyFile);
    RSAEngine rsaEngine=new RSAEngine();
    rsaEngine.init(false,key);
    byte[] bytesReaded;
    int nBytesReaded;
    int inputBlockSize=rsaEngine.getInputBlockSize();
    do
    {
        bytesLeidos = new byte[inputBlockSize];
        nBytesReaded=encryptedTextFile.read(bytesReaded);
        if(nBytesReaded>-1)
        {
                byte[] decryptedText=rsaEngine.processBlock(bytesReaded,0,inputBlockSize);          
                decryptedTextFile.write(decryptedText);                 
        }
    }while(nBytesReaded>-1);
    decryptedTextFile.flush();
    decryptedTextFile.close();
    encryptedTextFile.close();

提前谢谢


共2个答案

匿名用户

RSAEngine不添加填充,因此您将丢失数据块中的任何前导零。您还需要使用可用的编码模式之一。

我也建议使用对称密钥算法,只使用RSA来加密对称密钥。这将更快,而且根据您的数据,也更安全。

祝好

大卫

匿名用户

我认为你需要改变这一行:

   if(nBytesReaded>1)

对这个

   if(nBytesReaded>-1)

在decypt部分改变这个,也许:

rsaEngine.init(false,clave);

对这个

rsaEngine.init(false,key);

但是可能还有更多。如果最后一个块不是全尺寸,您就没有加密整个输入。