12 lines
252 B
C
12 lines
252 B
C
|
//
|
||
|
// Created by 29019 on 2020/1/4.
|
||
|
//
|
||
|
|
||
|
#ifndef GENERAL_BASE64_H
|
||
|
#define GENERAL_BASE64_H
|
||
|
#include <string>
|
||
|
std::string base64_encode(unsigned char const* , unsigned int len);
|
||
|
std::string base64_decode(std::string const& s);
|
||
|
|
||
|
#endif //GENERAL_BASE64_H
|