#include <cel_base64.h>
Static Public Member Functions | |
| static String | encode (const u8 *CEL_RESTRICT src, size_t size) |
| static void | decode (SimpleArray< u8 > &buffer, const String &src) |
Definition at line 20 of file cel_base64.h.
| static String Celartem::Base64T< Base64Traits >::encode | ( | const u8 *CEL_RESTRICT | src, | |
| size_t | size | |||
| ) | [inline, static] |
Encode the input binary into Base64 string.
| src | A binary to encode. | |
| size | The size of the binary in bytes. |
Definition at line 31 of file cel_base64.h.
| static void Celartem::Base64T< Base64Traits >::decode | ( | SimpleArray< u8 > & | buffer, | |
| const String & | src | |||
| ) | [inline, static] |
Decode the input string into binary.
| buffer | A buffer to receive the binary. | |
| src | A Base64 string to decode. |
Definition at line 60 of file cel_base64.h.