b64.h 251 B

1234567891011121314
  1. #ifndef __sti__b64_h__
  2. #define __sti__b64_h__
  3. #include <stdint.h>
  4. void base64_decode(char* in, uint64_t inLen, uint8_t* out, uint64_t* outLen);
  5. void base64_encode(char* in, uint64_t inLen, char* out, uint64_t* outLen);
  6. #endif // __sti__b64_h__