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
7e1ffa87
Commit
7e1ffa87
authored
Apr 30, 2010
by
André Hentschel
Committed by
Alexandre Julliard
May 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: Fix a testfailure on Win7.
parent
2554a55b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rsaenh.c
dlls/rsaenh/tests/rsaenh.c
+2
-2
No files found.
dlls/rsaenh/tests/rsaenh.c
View file @
7e1ffa87
...
...
@@ -1803,8 +1803,8 @@ static void test_rsa_encrypt(void)
/* An RSA key doesn't support salt */
result
=
CryptGetKeyParam
(
hRSAKey
,
KP_SALT
,
NULL
,
&
dwLen
,
0
);
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_KEY
,
"expected NTE_BAD_KEY, got %08x
\n
"
,
GetLastError
());
ok
(
!
result
&&
(
GetLastError
()
==
NTE_BAD_KEY
||
GetLastError
()
==
NTE_NOT_FOUND
/* Win7 */
)
,
"expected NTE_BAD_KEY
or NTE_NOT_FOUND
, got %08x
\n
"
,
GetLastError
());
/* The key exchange key's public key may be exported.. */
result
=
CryptExportKey
(
hRSAKey
,
0
,
PUBLICKEYBLOB
,
0
,
NULL
,
&
dwLen
);
...
...
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