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
b5c98f4d
Commit
b5c98f4d
authored
Jul 17, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Jul 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Make tests loadable on NT4.
parent
fc56e926
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
9 deletions
+25
-9
crl.c
dlls/crypt32/tests/crl.c
+25
-9
No files found.
dlls/crypt32/tests/crl.c
View file @
b5c98f4d
...
@@ -76,6 +76,18 @@ static const BYTE signedCRL[] = { 0x30, 0x45, 0x30, 0x2c, 0x30, 0x02, 0x06,
...
@@ -76,6 +76,18 @@ static const BYTE signedCRL[] = { 0x30, 0x45, 0x30, 0x2c, 0x30, 0x02, 0x06,
0x30
,
0x5a
,
0x30
,
0x02
,
0x06
,
0x00
,
0x03
,
0x11
,
0x00
,
0x0f
,
0x0e
,
0x0d
,
0x0c
,
0x30
,
0x5a
,
0x30
,
0x02
,
0x06
,
0x00
,
0x03
,
0x11
,
0x00
,
0x0f
,
0x0e
,
0x0d
,
0x0c
,
0x0b
,
0x0a
,
0x09
,
0x08
,
0x07
,
0x06
,
0x05
,
0x04
,
0x03
,
0x02
,
0x01
,
0x00
};
0x0b
,
0x0a
,
0x09
,
0x08
,
0x07
,
0x06
,
0x05
,
0x04
,
0x03
,
0x02
,
0x01
,
0x00
};
static
BOOL
(
WINAPI
*
pCertIsValidCRLForCertificate
)(
PCCERT_CONTEXT
,
PCCRL_CONTEXT
,
DWORD
,
void
*
);
static
void
init_function_pointers
(
void
)
{
HMODULE
hdll
=
GetModuleHandleA
(
"crypt32.dll"
);
if
(
hdll
)
{
pCertIsValidCRLForCertificate
=
(
void
*
)
GetProcAddress
(
hdll
,
"CertIsValidCRLForCertificate"
);
}
}
static
void
testCreateCRL
(
void
)
static
void
testCreateCRL
(
void
)
{
{
PCCRL_CONTEXT
context
;
PCCRL_CONTEXT
context
;
...
@@ -489,6 +501,8 @@ static void testIsValidCRLForCert(void)
...
@@ -489,6 +501,8 @@ static void testIsValidCRLForCert(void)
PCCRL_CONTEXT
crl
;
PCCRL_CONTEXT
crl
;
HCERTSTORE
store
;
HCERTSTORE
store
;
if
(
!
pCertIsValidCRLForCertificate
)
return
;
crl
=
CertCreateCRLContext
(
X509_ASN_ENCODING
,
v1CRLWithIssuerAndEntry
,
crl
=
CertCreateCRLContext
(
X509_ASN_ENCODING
,
v1CRLWithIssuerAndEntry
,
sizeof
(
v1CRLWithIssuerAndEntry
));
sizeof
(
v1CRLWithIssuerAndEntry
));
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
...
@@ -503,11 +517,11 @@ static void testIsValidCRLForCert(void)
...
@@ -503,11 +517,11 @@ static void testIsValidCRLForCert(void)
*/
*/
/* Curiously, any CRL is valid for the NULL certificate */
/* Curiously, any CRL is valid for the NULL certificate */
ret
=
CertIsValidCRLForCertificate
(
NULL
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
NULL
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
/* Same issuer for both cert and CRL, this CRL is valid for that cert */
/* Same issuer for both cert and CRL, this CRL is valid for that cert */
ret
=
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
cert2
=
CertCreateCertificateContext
(
X509_ASN_ENCODING
,
cert2
=
CertCreateCertificateContext
(
X509_ASN_ENCODING
,
...
@@ -519,7 +533,7 @@ static void testIsValidCRLForCert(void)
...
@@ -519,7 +533,7 @@ static void testIsValidCRLForCert(void)
* that cert. According to MSDN, the relevant bit to check is whether the
* that cert. According to MSDN, the relevant bit to check is whether the
* CRL has a CRL_ISSUING_DIST_POINT extension.
* CRL has a CRL_ISSUING_DIST_POINT extension.
*/
*/
ret
=
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
CertFreeCRLContext
(
crl
);
CertFreeCRLContext
(
crl
);
...
@@ -531,9 +545,9 @@ static void testIsValidCRLForCert(void)
...
@@ -531,9 +545,9 @@ static void testIsValidCRLForCert(void)
sizeof
(
v2CRLWithIssuingDistPoint
));
sizeof
(
v2CRLWithIssuingDistPoint
));
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
CertFreeCRLContext
(
crl
);
CertFreeCRLContext
(
crl
);
...
@@ -543,9 +557,9 @@ static void testIsValidCRLForCert(void)
...
@@ -543,9 +557,9 @@ static void testIsValidCRLForCert(void)
sizeof
(
verisignCRL
));
sizeof
(
verisignCRL
));
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
ok
(
crl
!=
NULL
,
"CertCreateCRLContext failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
CertFreeCRLContext
(
crl
);
CertFreeCRLContext
(
crl
);
...
@@ -561,9 +575,9 @@ static void testIsValidCRLForCert(void)
...
@@ -561,9 +575,9 @@ static void testIsValidCRLForCert(void)
sizeof
(
verisignCRL
),
CERT_STORE_ADD_ALWAYS
,
&
crl
);
sizeof
(
verisignCRL
),
CERT_STORE_ADD_ALWAYS
,
&
crl
);
ok
(
ret
,
"CertAddEncodedCRLToStore failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertAddEncodedCRLToStore failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert1
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ret
=
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ret
=
p
CertIsValidCRLForCertificate
(
cert2
,
crl
,
0
,
NULL
);
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
ok
(
ret
,
"CertIsValidCRLForCertificate failed: %08lx
\n
"
,
GetLastError
());
CertFreeCRLContext
(
crl
);
CertFreeCRLContext
(
crl
);
...
@@ -684,6 +698,8 @@ static void testVerifyCRLRevocation(void)
...
@@ -684,6 +698,8 @@ static void testVerifyCRLRevocation(void)
START_TEST
(
crl
)
START_TEST
(
crl
)
{
{
init_function_pointers
();
testCreateCRL
();
testCreateCRL
();
testAddCRL
();
testAddCRL
();
testFindCRL
();
testFindCRL
();
...
...
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