Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
07115ab9
Commit
07115ab9
authored
Nov 04, 2016
by
Huw Davies
Committed by
Alexandre Julliard
Nov 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dssenh/tests: Use a non-crippled algorithm in the key exchange tests.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
25b744b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dssenh.c
dlls/dssenh/tests/dssenh.c
+2
-2
No files found.
dlls/dssenh/tests/dssenh.c
View file @
07115ab9
...
...
@@ -1317,11 +1317,11 @@ static void test_keyExchange_dssDH(HCRYPTPROV hProv, const struct keyExchange_te
ok
(
result
,
"Failed to import key for user 2, got %x
\n
"
,
GetLastError
());
/* Set the shared key parameters to matching cipher type */
algid
=
CALG_
RC4
;
algid
=
CALG_
3DES
;
result
=
CryptSetKeyParam
(
sessionKey1
,
KP_ALGID
,
(
BYTE
*
)
&
algid
,
0
);
ok
(
result
,
"Failed to set session key for user 1, got %x
\n
"
,
GetLastError
());
algid
=
CALG_
RC4
;
algid
=
CALG_
3DES
;
result
=
CryptSetKeyParam
(
sessionKey2
,
KP_ALGID
,
(
BYTE
*
)
&
algid
,
0
);
ok
(
result
,
"Failed to set session key for user 2, got %x
\n
"
,
GetLastError
());
...
...
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