crypto.h 183 B

123456789101112
  1. #ifndef _CRYPTO_H_
  2. #define _CRYPTO_H_
  3. #include <stdint.h>
  4. uint32_t sum(char* str);
  5. uint32_t hash(char* str);
  6. char* base64_encode(char* str);
  7. char* base64_decode(char* str);
  8. #endif