base64.h 198 B

123456789101112
  1. #ifndef BASE64_H
  2. #define BASE64_H
  3. extern "C" {
  4. uint32_t base64_encode (char* to, char* from, uint32_t len);
  5. uint32_t base64_decode (char* to, char* from, uint32_t len);
  6. };
  7. #endif /* BASE64_H */