SystemFunction041(3w)
NAME
SystemFunction041 (ADVAPI32.@)
SYNOPSIS
NTSTATUS SystemFunction041 ( PVOID memory, ULONG length, ULONG flags )
DESCRIPTION
MSDN documents this function as RtlDecryptMemory.
PARAMS
memory [In/Out] Pointer to memory to decrypt.
length [In] Length of region to decrypt in bytes.
flags [In] Control whether other processes are able to decrypt the memory. RTL_ENCRYPT_OPTION_SAME_PROCESS RTL_ENCRYPT_OPTION_CROSS_PROCESS RTL_ENCRYPT_OPTION_SAME_LOGON.
RETURNS
Success: STATUS_SUCCESS
Failure: NTSTATUS error code.
NOTES
length must be a multiple of RTL_ENCRYPT_MEMORY_SIZE. If flags are
specified when encrypting, the same flag value must be given when
decrypting the memory.
IMPLEMENTATION
Not defined in a Wine header. The function is either undocumented, or
missing from Wine.
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".