2017-02-12 55 views
-1


我一直在這個項目上工作了一個星期,我找不到解決我的問題。 我做了一個加密器,它可以加密/解密二進制文件(如.exe,.jpg等)。
我能夠使用矢量從二進制文件正確獲取數據。
但我無法正確加密/解密向量中的數據。
一些代碼:加密字符的問題*

if (encryptFile) 
     { 
      Crypt crypt; 
      //TOencryptfile.open(writeFile, ios::binary | ios::out); 

      vector<char> buffer((istreambuf_iterator<char>(encryptFile)),(istreambuf_iterator<char>())); 
      cout << buffer.size() << endl; 
      _getch(); 
      for (std::vector<char>::iterator i = buffer.begin(); i != buffer.end(); ++i) { 
       // encryption that fails 
       temp = crypt.getKeyFromString(&*i , key, strlen(&*i)); 
      } 
      TOencryptfile.close(); 
      encryptFile.close(); 
     } 

和功能getKeyFromString:

KEYCRYPT Crypt::getKeyFromString(KEYCRYPT text, KEYCHAR charkey, keylength length) { 
    int string_size = std::strlen(text); 
    KEYCRYPT textcrypt = new char[string_size + 1]; 
    std::strcpy(textcrypt, text); 
    int key = strlen(charkey); 
    for (int i = 0; i < length; i++) { 
     if (strlen(text) != 0) { 
      textcrypt[i] = text[i]^charkey[i % (sizeof(charkey)/sizeof(char))]; 
      //keylvl += text[i]^(int(charkey) + i) % key; 
      //keyfnl += keylvl[i]^(int(charkey) - i) * key; 
     } 
    } 
    return textcrypt; 
} 

,並在最後的類型:

typedef char* KEYCRYPT; 
typedef int KEY; 
typedef char* KEYCHAR; 
typedef int keylength; 

沒有任何人知道加密*i的好辦法?
,因爲我的方法是不行的,它不與getKeyFromString(temp, key, strlen(temp))

+0

'i'指向的東西看起來是單個字符。加密API加密字符串,而不是單個字符。 –

+0

謝謝!你認爲什麼是解決方案? – waterlight

+0

@waterlight將文件內容放入一個字符串中,並將其傳遞給crypto API。 – Barmar

回答

0

以及再次調用函數時返回相同的,根據@Barmar的響應:
@waterlight Put the file contents into a string and pass that to the crypto API.
我設法解決這個問題。
所有我要做的就是:

stringstream result; 
std::copy(buffer.begin(), buffer.end(), std::ostream_iterator<char>(result, " ")); 
string now = result.str(); 

和一切工作。
感謝大家回覆!!