-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))
'i'指向的東西看起來是單個字符。加密API加密字符串,而不是單個字符。 –
謝謝!你認爲什麼是解決方案? – waterlight
@waterlight將文件內容放入一個字符串中,並將其傳遞給crypto API。 – Barmar