base64.h 203 B

12345678
  1. #ifndef __BASE_64_H_
  2. #define __BASE_64_H_
  3. char *base64_encode( const unsigned char * bindata, char * base64, int binlength );
  4. int base64_decode( const char * base64, unsigned char * bindata );
  5. #endif