me-no-dev 8dc70e0add Revert "Update licenses"
This reverts commit 4b3f5c8ed463b18afe28d132d607bbf164d8eec9.
2021-03-11 12:11:53 +02:00

14 lines
221 B
C++

#ifndef CORE_BASE64_H_
#define CORE_BASE64_H_
class base64
{
public:
static String encode(const uint8_t * data, size_t length);
static String encode(const String& text);
private:
};
#endif /* CORE_BASE64_H_ */