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
d740f342
Commit
d740f342
authored
Feb 22, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Feb 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stubs for CryptFindOIDInfo and I_CryptInstallAsn1Module.
Move CryptVerifyMessageSignature stub to main.c.
parent
a7e36dd2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
11 deletions
+25
-11
cert.c
dlls/crypt32/cert.c
+0
-10
crypt32.spec
dlls/crypt32/crypt32.spec
+2
-1
main.c
dlls/crypt32/main.c
+16
-0
oid.c
dlls/crypt32/oid.c
+7
-0
No files found.
dlls/crypt32/cert.c
View file @
d740f342
...
...
@@ -314,16 +314,6 @@ BOOL WINAPI CryptVerifyCertificateSignatureEx(HCRYPTPROV hCryptProv,
return
ret
;
}
BOOL
WINAPI
CryptVerifyMessageSignature
(
/*PCRYPT_VERIFY_MESSAGE_PARA*/
void
*
pVerifyPara
,
DWORD
dwSignerIndex
,
const
BYTE
*
pbSignedBlob
,
DWORD
cbSignedBlob
,
BYTE
*
pbDecoded
,
DWORD
*
pcbDecoded
,
PCCERT_CONTEXT
*
ppSignerCert
)
{
FIXME
(
"stub: %p, %ld, %p, %ld, %p, %p, %p
\n
"
,
pVerifyPara
,
dwSignerIndex
,
pbSignedBlob
,
cbSignedBlob
,
pbDecoded
,
pcbDecoded
,
ppSignerCert
);
return
FALSE
;
}
BOOL
WINAPI
CertGetEnhancedKeyUsage
(
PCCERT_CONTEXT
pCertContext
,
DWORD
dwFlags
,
PCERT_ENHKEY_USAGE
pUsage
,
DWORD
*
pcbUsage
)
{
...
...
dlls/crypt32/crypt32.spec
View file @
d740f342
...
...
@@ -102,7 +102,7 @@
@ stub CryptExportPKCS8
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
@ st
ub CryptFindOIDInfo
@ st
dcall CryptFindOIDInfo(long ptr long)
@ stub CryptFormatObject
@ stdcall CryptFreeOIDFunctionAddress(long long)
@ stub CryptGetAsyncParam
...
...
@@ -181,6 +181,7 @@
@ stdcall I_CryptGetOssGlobal(long)
@ stdcall I_CryptGetTls(long)
@ stub I_CryptInsertLruEntry
@ stdcall I_CryptInstallAsn1Module(long long long)
@ stdcall I_CryptInstallOssGlobal(long long long)
@ stub I_CryptReleaseLruEntry
@ stdcall I_CryptSetTls(long ptr)
...
...
dlls/crypt32/main.c
View file @
d740f342
...
...
@@ -365,6 +365,12 @@ BOOL WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
return
FALSE
;
}
BOOL
WINAPI
I_CryptInstallAsn1Module
(
void
*
x
,
DWORD
y
,
DWORD
z
)
{
FIXME
(
"%p %08lx %08lx
\n
"
,
x
,
y
,
z
);
return
TRUE
;
}
BOOL
WINAPI
CryptQueryObject
(
DWORD
dwObjectType
,
const
void
*
pvObject
,
DWORD
dwExpectedContentTypeFlags
,
DWORD
dwExpectedFormatTypeFlags
,
DWORD
dwFlags
,
DWORD
*
pdwMsgAndCertEncodingType
,
DWORD
*
pdwContentType
,
...
...
@@ -377,3 +383,13 @@ BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
phCertStore
,
phMsg
,
ppvContext
);
return
FALSE
;
}
BOOL
WINAPI
CryptVerifyMessageSignature
(
/*PCRYPT_VERIFY_MESSAGE_PARA*/
void
*
pVerifyPara
,
DWORD
dwSignerIndex
,
const
BYTE
*
pbSignedBlob
,
DWORD
cbSignedBlob
,
BYTE
*
pbDecoded
,
DWORD
*
pcbDecoded
,
PCCERT_CONTEXT
*
ppSignerCert
)
{
FIXME
(
"stub: %p, %ld, %p, %ld, %p, %p, %p
\n
"
,
pVerifyPara
,
dwSignerIndex
,
pbSignedBlob
,
cbSignedBlob
,
pbDecoded
,
pcbDecoded
,
ppSignerCert
);
return
FALSE
;
}
dlls/crypt32/oid.c
View file @
d740f342
...
...
@@ -84,6 +84,13 @@ BOOL WINAPI CryptEnumOIDInfo(DWORD dwGroupId, DWORD dwFlags, void *pvArg,
return
TRUE
;
}
PCCRYPT_OID_INFO
WINAPI
CryptFindOIDInfo
(
DWORD
dwKeyType
,
void
*
pvKey
,
DWORD
dwGroupId
)
{
FIXME
(
"(%ld, %p, %ld): stub
\n
"
,
dwKeyType
,
pvKey
,
dwGroupId
);
return
NULL
;
}
/* There is no free function associated with this; therefore, the sets are
* freed when crypt32.dll is unloaded.
*/
...
...
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