arduino-esp32-custom-lwip-p.../cores/esp32/base64.h

14 lines
221 B
C
Raw Permalink Normal View History

2023-02-25 16:13:53 +01:00
#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_ */