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
314033b9
Commit
314033b9
authored
Nov 10, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Nov 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh/tests: Fix a couple typos.
parent
0695b0dc
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 @
314033b9
...
...
@@ -176,7 +176,7 @@ static int init_aes_environment(void)
result
=
CryptAcquireContext
(
&
hProv
,
szContainer
,
NULL
,
PROV_RSA_AES
,
CRYPT_VERIFYCONTEXT
);
if
(
!
result
&&
GetLastError
()
==
NTE_PROV_TYPE_NOT_DEF
)
{
win_skip
(
"RSA_A
SE
provider not supported
\n
"
);
win_skip
(
"RSA_A
ES
provider not supported
\n
"
);
return
0
;
}
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_FLAGS
,
"%d, %08x
\n
"
,
result
,
GetLastError
());
...
...
@@ -2307,7 +2307,7 @@ static void test_null_provider(void)
ok
(
result
,
"CryptAcquireContext failed: %08x
\n
"
,
GetLastError
());
if
(
!
result
)
return
;
result
=
CryptImportKey
(
prov
,
signBlob
,
sizeof
(
signBlob
),
0
,
0
,
&
key
);
ok
(
result
,
"Crypt
Gen
Key failed: %08x
\n
"
,
GetLastError
());
ok
(
result
,
"Crypt
Import
Key failed: %08x
\n
"
,
GetLastError
());
CryptDestroyKey
(
key
);
/* doesn't allow access to the key exchange key.. */
result
=
CryptGetUserKey
(
prov
,
AT_KEYEXCHANGE
,
&
key
);
...
...
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