coding.h
1 
38 WOLFSSL_API int Base64_Decode(const byte* in, word32 inLen, byte* out,
39  word32* outLen);
40 
78 WOLFSSL_API
79 int Base64_Encode(const byte* in, word32 inLen, byte* out,
80  word32* outLen);
81 
121 int Base64_EncodeEsc(const byte* in, word32 inLen, byte* out,
122  word32* outLen);
123 
160 WOLFSSL_API
161 int Base64_Encode_NoNl(const byte* in, word32 inLen, byte* out,
162  word32* outLen);
163 
199 WOLFSSL_API
200 int Base16_Decode(const byte* in, word32 inLen, byte* out, word32* outLen);
201 
232 WOLFSSL_API
233 int Base16_Encode(const byte* in, word32 inLen, byte* out, word32* outLen);
WOLFSSL_API 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 ...
Definition: coding.c:90
WOLFSSL_API int Base16_Encode(const byte *in, word32 inLen, byte *out, word32 *outLen)
Encode input to base16 output.
Definition: coding.c:472
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 ...
Definition: coding.c:390
WOLFSSL_API 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 ...
Definition: coding.c:395
WOLFSSL_API 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 ...
Definition: coding.c:383
WOLFSSL_API 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 ...
Definition: coding.c:416