#include <fbxbase64coder.h>
This class encodes data in the Base64 format.
Definition at line 43 of file fbxbase64coder.h.
Public Member Functions | |
| int | Encode (const void *pInBuffer, int pInSize, void *pOutBuffer, int pOutSize) | 
| Encodes the input buffer.  More... | |
| int | Encode (const void *pInBuffer, int pInSize, FbxString &pOutBuffer) | 
| Encodes the input buffer.  More... | |
| int Encode | ( | const void * | pInBuffer, | 
| int | pInSize, | ||
| void * | pOutBuffer, | ||
| int | pOutSize | ||
| ) | 
Encodes the input buffer.
| pInBuffer | the input buffer containing data. | 
| pInSize | the size of the input data in bytes. | 
| pOutBuffer | the destination buffer, receives data encoded in Base64. | 
| pOutSize | the capacity of the output buffer in bytes, which should be at least 33% larger than the input buffer size, or 4 bytes whichever is more. | 
| int Encode | ( | const void * | pInBuffer, | 
| int | pInSize, | ||
| FbxString & | pOutBuffer | ||
| ) | 
Encodes the input buffer.
| pInBuffer | the input buffer containing data. | 
| pInSize | the size of the input data in bytes. | 
| pOutBuffer | the destination buffer; data is set, not appended. |