int encoded_lenght = base64_encode( char *data_out, char *data_in, int data_in_lenght ); int decoded_lenght = base64_decode( char *data_out, char *data_in, int data_in_lenght ); How to use: I've used the Sming framework for the ESP8266, but the code should be portable to ...
base64_utils.h File name refactoring to avoid Arduino framework clashing Sep 2, 2022 README ESP8266-base64 These are functions used to encode and decode data to and from the Base64 format. The original code is from this github repository:https://github.com/AxisCommunications/arduino-websocket...