This commit is contained in:
2024-04-11 06:57:44 -07:00
commit a61a59e281
11 changed files with 567 additions and 0 deletions

7
include/helpers.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef HELPERS_H
#define HELPERS_H
const unsigned char *one_byte_xor(const unsigned char *hex, size_t sz, char c);
const char *one_byte_xor_s(const unsigned char *hex, size_t sz, char c);
#endif // HELPERS_H

6
include/imports.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef IMPORT_H
#define IMPORT_H
void set1();
#endif // IMPORT_H