EP_CryptDecryptBuffer
EP_CryptDecryptBuffer decrypts a buffer with the defined key.
Parameters
- Buffer - a pointer to the memory buffer for decrypting.
- Size - the size of the memory buffer.
- Key - a pointer to ANSI, a null terminated string that will be used as a key for decryption.
Return Value
The function does not return value.
Definition
Show/Hide C++ function definition
extern "C" __declspec( dllimport ) __stdcall void EP_CryptDecryptBuffer( byte* Buffer, int Size, char* Key);
Show/Hide Delphi function definition
procedure EP_CryptDecryptBuffer(Buffer : pointer; Size : Cardinal; Key : PAnsiChar); stdcall;
Show/Hide C# (.NET) function definition
public class Enigma_IDE
{
[DllImport("enigma_ide.dll", CallingConvention = CallingConvention.StdCall)]
public static extern void EP_CryptDecryptBuffer(IntPtr Buffer, int Size, string Key);
}
See function examples in the installation folder, Examples\CryptBuffer subfolder.