CryptDecrypt(3w)
NAME
CryptDecrypt (ADVAPI32.@)
SYNOPSIS
BOOL CryptDecrypt ( HCRYPTKEY hKey, HCRYPTHASH hHash, BOOL Final, DWORD dwFlags, BYTE* pbData, DWORD* pdwDataLen )
DESCRIPTION
Decrypts data encrypted by CryptEncrypt.
PARAMS
hKey [In] Handle to the decryption key.
hHash [In] Handle to a hash object.
Final [In] TRUE if this is the last section to be decrypted.
dwFlags [In] Reserved for future use. Can be CRYPT_OAEP.
pbData [In/Out] Buffer that holds the encrypted data. Holds decrypted
data on return.
pdwDataLen [In/Out] Length of pbData before and after the call.
RETURNS
Success: TRUE
Failure: FALSE
IMPLEMENTATION
Defined in "wincrypt.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/advapi32/crypt.c".
- Debug channel "crypt".