#pragma once /* * LOKI3 * * [ cstrobf.h ] * * 2019 and beyond Elective Surgery [dmfr] */ #include #include #include #include #include #include #include #define CSTROBF_MAX 1024 #define KEY_SIZE 8 typedef struct cstrobf { uint8_t str[CSTROBF_MAX]; size_t size; uint8_t key[KEY_SIZE]; size_t ksize; } estring; char *decrypt (estring); void destroy(char *, size_t); /* EOF */