Commit 25b744b0 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

dssenh/tests: RC4 has been crippled in recent Windows versions.

parent 43204a0d
......@@ -639,7 +639,8 @@ static void test_data_encryption(const struct encrypt_test *tests, int testLen)
ok(result, "Expected data decryption.\n");
/* Verify we have received expected decrypted data */
ok(!memcmp(pbData, tests[i].decrypted, dataLen), "Incorrect decrypted data.\n");
ok(!memcmp(pbData, tests[i].decrypted, dataLen) ||
broken(tests[i].algid == CALG_RC4), "Incorrect decrypted data.\n");
result = CryptDestroyKey(pKey);
ok(result, "Expected no DestroyKey errors.\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment