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
a5bbed2b
Commit
a5bbed2b
authored
Aug 22, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Aug 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add more tests for CryptVerifySignatureW, and correct its parameter checking.
parent
2ececbed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
6 deletions
+77
-6
crypt.c
dlls/advapi32/crypt.c
+1
-6
crypt.c
dlls/advapi32/tests/crypt.c
+76
-0
No files found.
dlls/advapi32/crypt.c
View file @
a5bbed2b
...
...
@@ -2134,12 +2134,7 @@ BOOL WINAPI CryptVerifySignatureW (HCRYPTHASH hHash, CONST BYTE *pbSignature, DW
TRACE
(
"(0x%lx, %p, %d, 0x%lx, %s, %08x)
\n
"
,
hHash
,
pbSignature
,
dwSigLen
,
hPubKey
,
debugstr_w
(
sDescription
),
dwFlags
);
if
(
!
hash
||
!
key
)
{
SetLastError
(
ERROR_INVALID_HANDLE
);
return
FALSE
;
}
if
(
!
pbSignature
||
!
dwSigLen
||
if
(
!
hash
||
!
key
||
!
hash
->
pProvider
||
hash
->
pProvider
->
dwMagic
!=
MAGIC_CRYPTPROV
||
!
key
->
pProvider
||
key
->
pProvider
->
dwMagic
!=
MAGIC_CRYPTPROV
)
{
...
...
dlls/advapi32/tests/crypt.c
View file @
a5bbed2b
...
...
@@ -349,6 +349,81 @@ static void test_incorrect_api_usage(void)
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%d
\n
"
,
GetLastError
());
}
static
const
BYTE
privKey
[]
=
{
0x07
,
0x02
,
0x00
,
0x00
,
0x00
,
0x24
,
0x00
,
0x00
,
0x52
,
0x53
,
0x41
,
0x32
,
0x00
,
0x02
,
0x00
,
0x00
,
0x01
,
0x00
,
0x01
,
0x00
,
0x79
,
0x10
,
0x1c
,
0xd0
,
0x6b
,
0x10
,
0x18
,
0x30
,
0x94
,
0x61
,
0xdc
,
0x0e
,
0xcb
,
0x96
,
0x4e
,
0x21
,
0x3f
,
0x79
,
0xcd
,
0xa9
,
0x17
,
0x62
,
0xbc
,
0xbb
,
0x61
,
0x4c
,
0xe0
,
0x75
,
0x38
,
0x6c
,
0xf3
,
0xde
,
0x60
,
0x86
,
0x03
,
0x97
,
0x65
,
0xeb
,
0x1e
,
0x6b
,
0xdb
,
0x53
,
0x85
,
0xad
,
0x68
,
0x21
,
0xf1
,
0x5d
,
0xe7
,
0x1f
,
0xe6
,
0x53
,
0xb4
,
0xbb
,
0x59
,
0x3e
,
0x14
,
0x27
,
0xb1
,
0x83
,
0xa7
,
0x3a
,
0x54
,
0xe2
,
0x8f
,
0x65
,
0x8e
,
0x6a
,
0x4a
,
0xcf
,
0x3b
,
0x1f
,
0x65
,
0xff
,
0xfe
,
0xf1
,
0x31
,
0x3a
,
0x37
,
0x7a
,
0x8b
,
0xcb
,
0xc6
,
0xd4
,
0x98
,
0x50
,
0x36
,
0x67
,
0xe4
,
0xa1
,
0xe8
,
0x7e
,
0x8a
,
0xc5
,
0x23
,
0xf2
,
0x77
,
0xf5
,
0x37
,
0x61
,
0x49
,
0x72
,
0x59
,
0xe8
,
0x3d
,
0xf7
,
0x60
,
0xb2
,
0x77
,
0xca
,
0x78
,
0x54
,
0x6d
,
0x65
,
0x9e
,
0x03
,
0x97
,
0x1b
,
0x61
,
0xbd
,
0x0c
,
0xd8
,
0x06
,
0x63
,
0xe2
,
0xc5
,
0x48
,
0xef
,
0xb3
,
0xe2
,
0x6e
,
0x98
,
0x7d
,
0xbd
,
0x4e
,
0x72
,
0x91
,
0xdb
,
0x31
,
0x57
,
0xe3
,
0x65
,
0x3a
,
0x49
,
0xca
,
0xec
,
0xd2
,
0x02
,
0x4e
,
0x22
,
0x7e
,
0x72
,
0x8e
,
0xf9
,
0x79
,
0x84
,
0x82
,
0xdf
,
0x7b
,
0x92
,
0x2d
,
0xaf
,
0xc9
,
0xe4
,
0x33
,
0xef
,
0x89
,
0x5c
,
0x66
,
0x99
,
0xd8
,
0x80
,
0x81
,
0x47
,
0x2b
,
0xb1
,
0x66
,
0x02
,
0x84
,
0x59
,
0x7b
,
0xc3
,
0xbe
,
0x98
,
0x45
,
0x4a
,
0x3d
,
0xdd
,
0xea
,
0x2b
,
0xdf
,
0x4e
,
0xb4
,
0x24
,
0x6b
,
0xec
,
0xe7
,
0xd9
,
0x0c
,
0x45
,
0xb8
,
0xbe
,
0xca
,
0x69
,
0x37
,
0x92
,
0x4c
,
0x38
,
0x6b
,
0x96
,
0x6d
,
0xcd
,
0x86
,
0x67
,
0x5c
,
0xea
,
0x54
,
0x94
,
0xa4
,
0xca
,
0xa4
,
0x02
,
0xa5
,
0x21
,
0x4d
,
0xae
,
0x40
,
0x8f
,
0x9d
,
0x51
,
0x83
,
0xf2
,
0x3f
,
0x33
,
0xc1
,
0x72
,
0xb4
,
0x1d
,
0x94
,
0x6e
,
0x7d
,
0xe4
,
0x27
,
0x3f
,
0xea
,
0xff
,
0xe5
,
0x9b
,
0xa7
,
0x5e
,
0x55
,
0x8e
,
0x0d
,
0x69
,
0x1c
,
0x7a
,
0xff
,
0x81
,
0x9d
,
0x53
,
0x52
,
0x97
,
0x9a
,
0x76
,
0x79
,
0xda
,
0x93
,
0x32
,
0x16
,
0xec
,
0x69
,
0x51
,
0x1a
,
0x4e
,
0xc3
,
0xf1
,
0x72
,
0x80
,
0x78
,
0x5e
,
0x66
,
0x4a
,
0x8d
,
0x85
,
0x2f
,
0x3f
,
0xb2
,
0xa7
};
static
void
test_verify_sig
(
void
)
{
BOOL
ret
;
HCRYPTPROV
prov
;
HCRYPTKEY
key
;
HCRYPTHASH
hash
;
BYTE
bogus
[]
=
{
0
};
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
0
,
NULL
,
0
,
0
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %08x
\n
"
,
GetLastError
());
ret
=
pCryptAcquireContextA
(
&
prov
,
szKeySet
,
NULL
,
PROV_RSA_FULL
,
CRYPT_NEWKEYSET
);
if
(
!
ret
&&
GetLastError
()
==
NTE_EXISTS
)
ret
=
pCryptAcquireContextA
(
&
prov
,
szKeySet
,
NULL
,
PROV_RSA_FULL
,
0
);
ret
=
pCryptImportKey
(
prov
,
(
LPBYTE
)
privKey
,
sizeof
(
privKey
),
0
,
0
,
&
key
);
ok
(
ret
,
"CryptImportKey failed: %08x
\n
"
,
GetLastError
());
ret
=
pCryptCreateHash
(
prov
,
CALG_MD5
,
0
,
0
,
&
hash
);
ok
(
ret
,
"CryptCreateHash failed: %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
hash
,
NULL
,
0
,
0
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
0
,
NULL
,
0
,
key
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
hash
,
NULL
,
0
,
key
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
NTE_BAD_SIGNATURE
,
"Expected NTE_BAD_SIGNATURE, got %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
hash
,
NULL
,
sizeof
(
bogus
),
key
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
NTE_BAD_SIGNATURE
,
"Expected NTE_BAD_SIGNATURE, got %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
hash
,
bogus
,
0
,
key
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
NTE_BAD_SIGNATURE
,
"Expected NTE_BAD_SIGNATURE, got %08x
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
pCryptVerifySignatureW
(
hash
,
bogus
,
sizeof
(
bogus
),
key
,
NULL
,
0
);
ok
(
!
ret
&&
GetLastError
()
==
NTE_BAD_SIGNATURE
,
"Expected NTE_BAD_SIGNATURE, got %08x
\n
"
,
GetLastError
());
pCryptDestroyKey
(
key
);
pCryptDestroyHash
(
hash
);
pCryptReleaseContext
(
prov
,
0
);
}
static
BOOL
FindProvRegVals
(
DWORD
dwIndex
,
DWORD
*
pdwProvType
,
LPSTR
*
pszProvName
,
DWORD
*
pcbProvName
,
DWORD
*
pdwProvCount
)
{
...
...
@@ -779,6 +854,7 @@ START_TEST(crypt)
init_environment
();
test_acquire_context
();
test_incorrect_api_usage
();
test_verify_sig
();
clean_up_environment
();
}
...
...
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