From eeac69b2168c5a65f9608771006ccc43033cbd23 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 May 2025 09:45:50 -0700 Subject: initial commit --- cstrobf.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 cstrobf.h (limited to 'cstrobf.h') diff --git a/cstrobf.h b/cstrobf.h new file mode 100644 index 0000000..c0628a8 --- /dev/null +++ b/cstrobf.h @@ -0,0 +1,34 @@ +#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 */ -- cgit v1.2.3