11 lines
233 B
C++
11 lines
233 B
C++
#ifndef _coBase64_H_
|
|
#define _coBase64_H_
|
|
|
|
#include <string>
|
|
|
|
// 编码
|
|
void coBase64Encode(std::string& outs, const std::string& ins);
|
|
// 解码
|
|
void coBase64Decode(std::string& outs, const std::string& ins);
|
|
|
|
#endif // _coBase64_H_
|