#ifndef _CRYPTO_H_ #define _CRYPTO_H_ #include <stdint.h> uint32_t sum(char* str); uint32_t hash(char* str); char* base64_encode(char* str); char* base64_decode(char* str); #endif