base64.h 373 B

12345678910111213141516171819
  1. /*
  2. * File: base64.h
  3. * Description: Simple BASE64 conversion methods
  4. * Author: Ari Edelkind
  5. * License: Public Domain
  6. * Website: http://episec.com/people/edelkind/c.html
  7. */
  8. #ifndef BASE64_H
  9. #define BASE64_H
  10. extern "C" {
  11. uint32_t base64_encode(char *to, char *from, uint32_t len);
  12. uint32_t base64_decode(char *to, char *from, uint32_t len);
  13. };
  14. #endif /* BASE64_H */