RSAENH_CPCreateHash (RSAENH.@)
BOOL RSAENH_CPCreateHash ( HCRYPTPROV hProv, ALG_ID Algid, HCRYPTKEY hKey, DWORD dwFlags, HCRYPTHASH* phHash )
CPCreateHash creates and initializes a new hash object.
hProv | [In] | Handle to the key container to which the new hash will belong. |
Algid | [In] | Identifies the hash algorithm, which will be used for the hash. |
hKey | [In] | Handle to a session key applied for keyed hashes. |
dwFlags | [In] | Currently no flags defined. Must be zero. |
phHash | [Out] | Points to the location where a handle to the new hash will be stored. |
Success: TRUE
Failure: FALSE.
hKey is a handle to a session key applied in keyed hashes like MAC and HMAC. If a normal hash object is to be created (like e.g. MD2 or SHA1) hKey must be zero.
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.