base64.h
上传用户:kittypts
上传日期:2018-02-11
资源大小:241k
文件大小:0k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. #ifndef _BASE64_H_
  2. #define _BASE64_H_
  3. #include <wtypes.h>
  4. /**
  5. This encodes raw data to Base64.
  6. */
  7. int base64_encode(unsigned char* in, WCHAR* out, int len);
  8. /**
  9. This function decodes Base64 code into its original form.
  10. */
  11. int base64_decode(unsigned char* in, unsigned char* out, int len);
  12. #endif //_BASE64_H_