mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
15 lines
No EOL
336 B
C
15 lines
No EOL
336 B
C
#ifndef CRYPT_H
|
|
#define CRYPT_H
|
|
|
|
#include "common.h"
|
|
|
|
VOID
|
|
CryptEncryptImportsArray(_In_ PUINT64 Array, _In_ UINT32 Entries);
|
|
|
|
UINT64
|
|
CryptDecryptImportsArrayEntry(_In_ PUINT64 Array, _In_ UINT32 Entries, _In_ UINT32 EntryIndex);
|
|
|
|
VOID
|
|
CryptDecryptBufferWithCookie(_In_ PVOID Buffer, _In_ UINT32 BufferSize, _In_ UINT32 Cookie);
|
|
|
|
#endif |