Currently we are trying to build a web server function using NetXduo's HTTP server on Azure RTOS. And we would like to use the base64 encoding and decoding functions.
After a little research, it seems that there are the following APIs. Is it okay to use this for the base64 encoding / decoding function on the application side of the web server?
"netxduo \ common \ inc"
-Nx_api.h (3914,18): UINT _nx_utility_base64_encode (UCHAR name, UINT name_size, UCHAR base64name, UINT base64name_size, UINT bytes_copied);
-Nx_api.h (3915,18): UINT _nx_utility_base64_decode (UCHAR base64name, UINT base64name_size, UCHAR name, UINT name_size, UINT bytes_copied);
If not, is there another way?