Commit 9a8220c4 authored by Alexandre Julliard's avatar Alexandre Julliard Committed by Michael Stefaniuc

secur32/tests: Don't check the exact number of cipher bits.

Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org> (cherry picked from commit 9ab03dd7) Signed-off-by: 's avatarMichael Stefaniuc <mstefani@winehq.org>
parent 23bd4cc3
......@@ -927,8 +927,7 @@ todo_wine
status = pQueryContextAttributesA(&context, SECPKG_ATTR_CONNECTION_INFO, (void*)&conn_info);
ok(status == SEC_E_OK, "QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x\n", status);
if(status == SEC_E_OK) {
ok(conn_info.dwCipherStrength == 128 || conn_info.dwCipherStrength == 168,
"conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength);
ok(conn_info.dwCipherStrength >= 128, "conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength);
ok(conn_info.dwHashStrength >= 128, "conn_info.dwHashStrength = %d\n", conn_info.dwHashStrength);
}
......
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