WIZlib Library API  ver 1.0
WIZlib Library API User Menual
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions
Base64

Base64 Codec. More...

Collaboration diagram for Base64:

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...
 

Detailed Description

Base64 Codec.

Base64 Utilities which is used at SMTP or something.

Function Documentation

int32 base64_decode ( int8 *  text,
uint8 *  dst,
int32  numBytes 
)

Decode string with base64 protocol.

Normally, this is used for SMTP or something.

Parameters
textString to decode
dstThe buffer in which decoded string will enter
numBytesDst buffer size
Returns
Decoded string size

Definition at line 365 of file util.c.

int32 base64_encode ( int8 *  text,
int32  numBytes,
int8 *  encodedText 
)

Encode string with base64 protocol.

Normally, this is used for SMTP or something.

Parameters
textString to encode
numBytesencodedText buffer size
encodedTextThe buffer in which encoded string will enter
Returns
always return 0

Definition at line 417 of file util.c.

Here is the caller graph for this function: