WIZlib Library API
ver 1.0
WIZlib Library API User Menual
|
Base64 Codec. More...
Functions | |
int32 | base64_decode (int8 *text, uint8 *dst, int32 numBytes) |
Decode string with base64 protocol. More... | |
int32 | base64_encode (int8 *text, int32 numBytes, int8 *encodedText) |
Encode string with base64 protocol. More... | |
Base64 Codec.
Base64 Utilities which is used at SMTP or something.
int32 base64_decode | ( | int8 * | text, |
uint8 * | dst, | ||
int32 | numBytes | ||
) |
int32 base64_encode | ( | int8 * | text, |
int32 | numBytes, | ||
int8 * | encodedText | ||
) |
Encode string with base64 protocol.
Normally, this is used for SMTP or something.
text | String to encode |
numBytes | encodedText buffer size |
encodedText | The buffer in which encoded string will enter |
Definition at line 417 of file util.c.