2


我想解密我之前使用 TripleDESCryptoServiceProvider 使用 C# 加密的文件。
这是我的加密代码:

private static void EncryptData(MemoryStream streamToEncrypt)
    {
        // initialize the encryption algorithm
        TripleDES algorithm = new TripleDESCryptoServiceProvider();

        byte[] desIV = new byte[8];
        byte[] desKey = new byte[16];

        for (int i = 0; i < 8; ++i)
        {
            desIV[i] = (byte)i;
        }

        for (int j = 0; j < 16; ++j)
        {
            desKey[j] = (byte)j;
        }

        FileStream outputStream = new FileStream(TheCryptedSettingsFilePath, FileMode.OpenOrCreate, FileAccess.Write);
        outputStream.SetLength(0);

        CryptoStream encStream = new CryptoStream(outputStream, algorithm.CreateEncryptor(desKey, desIV),
            CryptoStreamMode.Write);

        // write the encrypted data to the file
        encStream.Write(streamToEncrypt.ToArray(), 0, (int)streamToEncrypt.Length);

        encStream.Close();
        outputStream.Close();
    }

我已经找到了 Crypto++ 库并设法构建和链接它。因此,我尝试使用以下(本机)C++ 代码对加密后使用 C# 存储的文件进行解密:

FILE *fp;
long len;
char *buf;
if (_wfopen_s(&fp, _T("MyTest.bin"), _T("rb")) != 0)
{
    return false;
}

fseek(fp ,0 ,SEEK_END); //go to end
len = ftell(fp); //get position at end (length)
fseek(fp, 0, SEEK_SET); //go to beg.
buf = (char *)malloc(len); //malloc buffer
fread(buf, len, 1, fp); //read into buffer
fclose(fp);
BYTE pIV[] = {0, 1, 2, 3, 4, 5, 6, 7};
BYTE pKey[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};

const BYTE* lpData = (const BYTE*)(LPCTSTR)buf;
size_t bufferSize = strlen(buf);
BYTE* result = (BYTE *)malloc(bufferSize);

CFB_FIPS_Mode<DES_EDE2>::Decryption decryption_DES_EDE2_CFB;
decryption_DES_EDE2_CFB.SetKeyWithIV(pKey, sizeof(pKey), pIV, sizeof(pIV));
decryption_DES_EDE2_CFB.ProcessString(result, lpData, bufferSize);

该代码将无法正确解密。解密后的结果与之前加密的明文不符。对我的代码有任何想法吗?

4

3 回答 3

0

你能用c++加密和解密吗?你可以在c#中加密和解密吗?

你确定你使用相同的模式,填充和加密,解密序列?

tdes.Mode = CipherMode.ECB;
tdes.Padding = PaddingMode.PKCS7;
于 2010-02-03T15:05:20.010 回答
0

正如我在另一篇文章中所述,我设法使用 Windows Crypto API 完成了这项任务。

于 2010-03-11T10:47:59.067 回答
0

尝试 CBC 模式(TripleDESCryptoServiceProvider 的默认模式)

于 2010-08-11T08:43:50.727 回答