nn::nex::String::Base64ToByteArray Member Function

Syntax

static int Base64ToByteArray(
     const qChar * szASrc,
     qUnsignedInt32 uiSrcLength,
     qByte * pbDest,
     qUnsignedInt32 uiDestLength
);

static int Base64ToByteArray(
     const String & strSrc,
     qByte * pbDest,
     qUnsignedInt32 uiDestLength
);

Overloaded Member Functions

Base64ToByteArray ( const qChar *, qUnsignedInt32, qByte *, qUnsignedInt32 ) Converts a base-64 format into binary data.
Base64ToByteArray ( const String &, qByte *, qUnsignedInt32 ) Converts a base-64 format into binary data.

Description of Base64ToByteArray ( const qChar *, qUnsignedInt32, qByte *, qUnsignedInt32 )

If NULL is specified for pbDest, the function returns the (theoretical) required size of pbDest for conversion and does not actually convert the data.

Description of Base64ToByteArray ( const String &, qByte *, qUnsignedInt32 )

If NULL is specified for pbDest, the function returns the (theoretical) required size of pbDest for conversion and does not actually convert the data.


CONFIDENTIAL