RSAENH_CPVerifySignature (RSAENH.@)
BOOL RSAENH_CPVerifySignature ( HCRYPTPROV hProv, HCRYPTHASH hHash, const BYTE* pbSignature, DWORD dwSigLen, HCRYPTKEY hPubKey, LPCWSTR sDescription, DWORD dwFlags )
Verify the signature of a hash object.
hProv | [In] | The key container, to which the hash belongs. |
hHash | [In] | The hash for which the signature is verified. |
pbSignature | [In] | The binary signature. |
dwSigLen | [In] | Length of the signature BLOB. |
hPubKey | [In] | Public key used to verify the signature. |
sDescription | [In] | Should be NULL for security reasons. |
dwFlags | [In] | 0, CRYPT_NOHASHOID or CRYPT_X931_FORMAT: Format of the signature. |
Success: TRUE (Signature is valid)
Failure: FALSE (GetLastError == NTE_BAD_SIGNATURE, if signature is invalid)
Not declared in a Wine header. The function is either undocumented, or missing from Wine.
Implemented in "dlls/rsaenh/rsaenh.c". gitlab.winehq.org/wine/wine/blob/master/dlls/rsaenh/rsaenh.c
Debug channel "crypt".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.