诸暨麻将添加redis
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
205 B

  1. #pragma once
  2. #ifndef BASE64_H
  3. #define BASE64_H
  4. #include <string>
  5. std::string base64_encode(unsigned char const*, unsigned int len);
  6. std::string base64_decode(std::string const& s);
  7. #endif //BASE64_H