int Base64_Decode(const byte *in, word32 inLen, byte *out, word32 *outLen)
This function decodes the given Base64 encoded input, in, and stores the result in the output buffer ...
int Base64_EncodeEsc(const byte *in, word32 inLen, byte *out, word32 *outLen)
This function encodes the given input, in, and stores the Base64 encoded result in the output buffer ...
int Base64_Encode_NoNl(const byte *in, word32 inLen, byte *out, word32 *outLen)
This function encodes the given input, in, and stores the Base64 encoded result in the output buffer ...
int Base16_Decode(const byte *in, word32 inLen, byte *out, word32 *outLen)
This function decodes the given Base16 encoded input, in, and stores the result in the output buffer ...
int Base64_Encode(const byte *in, word32 inLen, byte *out, word32 *outLen)
This function encodes the given input, in, and stores the Base64 encoded result in the output buffer ...
int Base16_Encode(const byte *in, word32 inLen, byte *out, word32 *outLen)
Encode input to base16 output.