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
99d3e4c9
Commit
99d3e4c9
authored
Apr 19, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Remove tests for properties not present on all systems.
parent
b08f7fd8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
cert.c
dlls/crypt32/tests/cert.c
+1
-9
No files found.
dlls/crypt32/tests/cert.c
View file @
99d3e4c9
...
...
@@ -475,14 +475,6 @@ static void testCertProperties(void)
/* Check a few other implicit properties */
checkHash
(
bigCert
,
sizeof
(
bigCert
),
CALG_MD5
,
context
,
CERT_MD5_HASH_PROP_ID
);
checkHash
(
context
->
pCertInfo
->
Subject
.
pbData
,
context
->
pCertInfo
->
Subject
.
cbData
,
CALG_MD5
,
context
,
CERT_SUBJECT_NAME_MD5_HASH_PROP_ID
);
checkHash
(
context
->
pCertInfo
->
SubjectPublicKeyInfo
.
PublicKey
.
pbData
,
context
->
pCertInfo
->
SubjectPublicKeyInfo
.
PublicKey
.
cbData
,
CALG_MD5
,
context
,
CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID
);
/* Test key contexts and handles and such */
size
=
0
;
...
...
@@ -1775,7 +1767,7 @@ static void testSignAndEncodeCert(void)
algID
.
pszObjId
=
oid_rsa_md5
;
ret
=
CryptSignAndEncodeCertificate
(
0
,
0
,
X509_ASN_ENCODING
,
X509_CERT_TO_BE_SIGNED
,
&
info
,
&
algID
,
NULL
,
NULL
,
&
size
);
ok
(
ret
,
"CryptSignAndEncodeCertificate failed: %08x
\n
"
,
GetLastError
());
/* oid_rsa_md5 not present in some win2k */
if
(
ret
)
{
LPBYTE
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
...
...
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