Commit 07115ab9 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

dssenh/tests: Use a non-crippled algorithm in the key exchange tests.

parent 25b744b0
......@@ -1317,11 +1317,11 @@ static void test_keyExchange_dssDH(HCRYPTPROV hProv, const struct keyExchange_te
ok(result, "Failed to import key for user 2, got %x\n", GetLastError());
/* Set the shared key parameters to matching cipher type */
algid = CALG_RC4;
algid = CALG_3DES;
result = CryptSetKeyParam(sessionKey1, KP_ALGID, (BYTE *)&algid, 0);
ok(result, "Failed to set session key for user 1, got %x\n", GetLastError());
algid = CALG_RC4;
algid = CALG_3DES;
result = CryptSetKeyParam(sessionKey2, KP_ALGID, (BYTE *)&algid, 0);
ok(result, "Failed to set session key for user 2, got %x\n", GetLastError());
......
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