mirror-ac/driver/crypt.h

19 lines
457 B
C
Raw Normal View History

2024-01-28 08:34:09 +01:00
#ifndef CRYPT_H
#define CRYPT_H
#include "common.h"
VOID
CryptEncryptImportsArray(_In_ PUINT64 Array, _In_ UINT32 Entries);
2024-01-28 08:34:09 +01:00
UINT64
2024-04-13 10:23:14 +02:00
CryptDecryptImportsArrayEntry(_In_ PUINT64 Array,
_In_ UINT32 Entries,
_In_ UINT32 EntryIndex);
2024-01-28 08:34:09 +01:00
2024-01-31 08:32:13 +01:00
VOID
2024-04-13 10:23:14 +02:00
CryptDecryptBufferWithCookie(_In_ PVOID Buffer,
_In_ UINT32 BufferSize,
_In_ UINT32 Cookie);
2024-01-31 08:32:13 +01:00
2024-01-28 08:34:09 +01:00
#endif