Implement Base64 encoding function

This commit is contained in:
2020-11-01 17:58:05 +01:00
commit 2035cf0ad8
10 changed files with 18289 additions and 0 deletions

9
README.MD Normal file
View File

@@ -0,0 +1,9 @@
This is a small implementation of base64 encode and decode functions designed for embedded systems.
No dynamic memory is needed. However, a fair amount of static memory is needed for the lookup tables.
Storage of the lookup tables can be adapted using the ``BASE64_LOOKUP_TABLE_SECTION`` define.
If it is set, the lookup table will be moved to the section specified by the define. Example:
``#define BASE64_LOOKUP_TABLE_SECTION ".bss"``
This project is licensed under GPLv2.