secur32: Fixed schannel tests on Windows 8.1.
This commit is contained in:
parent
e838f0c285
commit
293c53e22f
|
@ -809,7 +809,8 @@ 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 = %d\n", conn_info.dwCipherStrength);
|
||||
ok(conn_info.dwCipherStrength == 128 || conn_info.dwCipherStrength == 168,
|
||||
"conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength);
|
||||
ok(conn_info.dwHashStrength >= 128, "conn_info.dwHashStrength = %d\n", conn_info.dwHashStrength);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue