诸暨麻将添加redis
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

13 行
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