1

我正在尝试编写 rc4 的实现。我正在使用 ifstream 从文件中读取纯文本。我注意到它没有在文件末尾输出,所以我尝试了各种显式清除缓冲区的方法。无论采用哪种方式(使用 endl、附加 \n、调用 cout.flush())我尝试刷新缓冲区,都会出现段错误。作为健全性检查,我用来自网络的示例替换了我的代码,我也单独对其进行了测试。如果我把它放在自己的文件中并编译它,它就可以工作(例如,它打印出文件的内容,没有段错误,并且不需要任何对 flush() 或 endl 的调用),但不是在我的代码中。

这是有问题的代码(在我的代码之外可以正常工作;它几乎是直接从 cplusplus.com 复制的)

 ifstream is;
 is.open("plain");
 char c;
 while (is.good())     // loop while extraction from file is possible
 {
     c = is.get();       // get character from file
     if (is.good())
         cout << c;
//       cout.flush();
 }
 is.close();           // close file*/

这是完整的代码:(警告,很多注释掉的代码)

#include <iostream>
#include <fstream>
#include <string.h>
#include <vector>

using namespace std;
static char s[256], k[256];
//static char *i, *j;
void swap(int m, int n, char t[256]){
        char tmp = t[m];
        t[m] = t[n];
        t[n] = tmp;
}

char getByte(){
        static char i(0), j(0);
        i = (i+1)%256;
        j = (j + s[i])%256;
        swap(i, j, s);
        return s[(s[i]+s[j]) % 256];
}

int main(int argc, char ** argv){
        /*string key = argv[1];*/
        if(argc < 4){
                cout << "Usage: \n rc4 keyfile plaintextfile outputfile" << endl;
                return -1;
        }
        string key;
        ifstream keyfile (argv[1]);
        keyfile >> k;
        cout << "Key = " << k << endl;
        keyfile.close();
        /*ifstream plaintextf;
        plaintextf.open(argv[2]);*/

        ofstream ciphertextf (argv[3]);

        for(int q = 0; q < 256; q++){
                s[q] = q;
        }
        int i, j;
        for(int m = 0; m < 256; m++){
                j = (j + s[m] + k[m % sizeof(k)])%256;
                swap(m, j, s);
        }
//      vector<char> bytes(plaintext.begin(), plaintext.end());
//      bytes.push_back('\0');
//      vector<char>::iterator it = bytes.begin();
/*      char pt;
        while(plaintextf.good()){
                pt = plaintextf.get();
                if(plaintextf.good()){
                        cout << pt;

                      ciphertextf <<(char) (pt ^ getByte());
                }

        } */
        ifstream is;
        is.open("plain");
        char c;
         while (is.good())     // loop while extraction from file is possible
         {
            c = is.get();       // get character from file
            if (is.good())
              cout << c;
//              cout.flush();
         }
  is.close();           // close file*/

/*//    plaintextf.close();
        ciphertextf.close();
        keyfile.close();
        */
        return 0;
}
4

1 回答 1

0

此外,我认为第二次调用 is.good() [ 如 if(is.good()) ] 会阻止文件的最后一个字符被复制。

于 2012-04-10T01:23:31.550 回答