PDA

View Full Version : How can i decode binary base64



Askar
12th September 2009, 14:49
Hi all,
I need to know how to decode binary base 64 encoded data from xml file. i retrieved binary base64 encoded data from sql server database. now how can i decode that data into a original format

thanks in advance......
Askar....

ChrisW67
14th September 2009, 04:01
Base64 encoded information is ASCII text. To convert that to a byte array (the original format) you want to read the QByteArray docs.

BTW: Qt Assistant is your friend... this was a three second search for "base64" in Qt Assistant.