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
ad8ce838
Commit
ad8ce838
authored
Dec 20, 2010
by
Greg Geldorp
Committed by
Alexandre Julliard
Dec 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh/tests: CryptGetKeyParam doesn't fail on Win7/Win2K8R2.
parent
d2091a80
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 @
ad8ce838
...
...
@@ -947,8 +947,8 @@ static void test_aes(int keylen)
/* AES provider doesn't support salt */
result
=
CryptGetKeyParam
(
hKey
,
KP_SALT
,
NULL
,
&
dwLen
,
0
);
ok
(
!
result
&&
(
GetLastError
()
==
NTE_BAD_KEY
||
GetLastError
()
==
ERROR_NO_TOKEN
/* Win7 */
)
,
"expected NTE_BAD_KEY
or ERROR_NO_TOKEN
, got %08x
\n
"
,
GetLastError
());
ok
(
(
!
result
&&
GetLastError
()
==
NTE_BAD_KEY
)
||
result
/* Win7 */
,
"expected NTE_BAD_KEY, got %08x
\n
"
,
GetLastError
());
dwLen
=
13
;
result
=
CryptEncrypt
(
hKey
,
0
,
TRUE
,
0
,
pbData
,
&
dwLen
,
16
);
...
...
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