nn::util::Base64::ToBase64String Member Functionstatic nn::Result ToBase64String( const void * pSrc, size_t sizeSrc, char * pDst, size_t sizeDst );
| Name | Description | |
|---|---|---|
| in | pSrc |
Pointer to the input data. |
| in | sizeSrc | Size of the input data. |
| out | pDst | Pointer to the destination buffer for the base-64 format string. |
| in | sizeDst | Size of the buffer specified by pDst. |
Converts the entered binary data into a base-64 format string.
This function outputs a string created in the following way:
One of the following errors is returned if conversion fails:
nn::util::ResultInvalidPtr - Pointer given as a parameter is invalid.nn::util::ResultBufferFull - The output destination buffer is not large enough.CONFIDENTIAL