Commit cde37270 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Use schannel for HTTPS connection by defaul and get rid of OpenSSL dependency.

parent cb1998af
......@@ -91,7 +91,6 @@ typedef struct
{
int socket;
BOOL secure;
void *ssl_s;
CtxtHandle ssl_ctx;
SecPkgContext_StreamSizes ssl_sizes;
server_t *server;
......
......@@ -3070,7 +3070,6 @@ static void test_cert_struct(HINTERNET req)
ok(!info.lpszSignatureAlgName, "lpszSignatureAlgName = %s\n", info.lpszSignatureAlgName);
ok(!info.lpszEncryptionAlgName, "lpszEncryptionAlgName = %s\n", info.lpszEncryptionAlgName);
ok(!info.lpszProtocolName, "lpszProtocolName = %s\n", info.lpszProtocolName);
todo_wine
ok(info.dwKeySize == 128, "dwKeySize = %u\n", info.dwKeySize);
release_cert_info(&info);
......
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