secur32/tests: Don't check the exact number of cipher bits.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9f532321d0
commit
9ab03dd7bb
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue