Build and link mhycrypto statically

This commit is contained in:
ayy lmao
2022-07-06 16:26:35 +03:00
committed by lilmayofuksu
parent e0272aa38a
commit 850b282b70
11 changed files with 791 additions and 25 deletions

View File

@@ -0,0 +1,12 @@
#ifndef MEMECRYPTO_H
#define MEMECRYPTO_H
#include <cstdint>
void memecrypto_prepare_key(const uint8_t *in, uint8_t *out);
void memecrypto_decrypt(const uint8_t *key, uint8_t *data);
void memecrypto_encrypt(const uint8_t *key, uint8_t *data);
#endif //MEMECRYPTO_H