Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a17b701
Commit
0a17b701
authored
Nov 07, 2016
by
Huw Davies
Committed by
Alexandre Julliard
Nov 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh/tests: Skip broken TLS1 tests on Windows 8 and greater.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d4fab3b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
rsaenh.c
dlls/rsaenh/tests/rsaenh.c
+12
-2
No files found.
dlls/rsaenh/tests/rsaenh.c
View file @
0a17b701
...
@@ -2801,8 +2801,18 @@ static void test_schannel_provider(void)
...
@@ -2801,8 +2801,18 @@ static void test_schannel_provider(void)
if
(
!
result
)
return
;
if
(
!
result
)
return
;
result
=
CryptCreateHash
(
hProv
,
CALG_SCHANNEL_MASTER_HASH
,
hMasterSecret
,
0
,
&
hMasterHash
);
result
=
CryptCreateHash
(
hProv
,
CALG_SCHANNEL_MASTER_HASH
,
hMasterSecret
,
0
,
&
hMasterHash
);
ok
(
result
,
"%08x
\n
"
,
GetLastError
());
ok
(
result
||
if
(
!
result
)
return
;
broken
(
!
result
),
/* Windows 8 and greater */
"%08x
\n
"
,
GetLastError
());
if
(
!
result
)
{
win_skip
(
"Broken TLS1 hash creation
\n
"
);
CryptDestroyKey
(
hRSAKey
);
CryptDestroyKey
(
hMasterSecret
);
CryptReleaseContext
(
hProv
,
0
);
CryptAcquireContextA
(
&
hProv
,
NULL
,
NULL
,
PROV_RSA_SCHANNEL
,
CRYPT_DELETEKEYSET
);
return
;
}
/* Deriving the server write encryption key from the master hash can't
/* Deriving the server write encryption key from the master hash can't
* succeed before the encryption key algorithm is set.
* succeed before the encryption key algorithm is set.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment