诸暨麻将添加redis
You can not select more than 25 topics 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