Simple C lib of the MD5 & TEA algorithm
git clone https://github.com/fumiama/simple-crypto.git cd simple-crypto mkdir build cd build cmake .. make make install
simplecrypto.h
#include <simplecrypto.h>
free
uint8_t* md5(const uint8_t *data, size_t data_len); TEADAT* tea_encrypt_qq(const TEA t[4], const TEADAT* src); TEADAT* tea_encrypt(const TEA t[4], const uint32_t sumtable[0x10], const TEADAT* src); TEADAT* tea_decrypt_qq(const TEA t[4], const TEADAT* src); TEADAT* tea_decrypt(const TEA t[4], const uint32_t sumtable[0x10], const TEADAT* src);