RSAENH_CPHashData (RSAENH.@)
BOOL RSAENH_CPHashData ( HCRYPTPROV hProv, HCRYPTHASH hHash, const BYTE* pbData, DWORD dwDataLen, DWORD dwFlags )
Updates a hash object with the given data.
hProv | [In] | Key container to which the hash object belongs. |
hHash | [In] | Hash object which is to be updated. |
pbData | [In] | Pointer to data with which the hash object is to be updated. |
dwDataLen | [In] | Length of the data. |
dwFlags | [In] | Currently none defined. |
Success: TRUE.
Failure: FALSE.
The actual hash value is queried with CPGetHashParam, which will finalize the hash. Updating a finalized hash will fail with a last error NTE_BAD_HASH_STATE.
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.