I'd like to do base64 encoding and decoding, but I could not find any support from the iPhone SDK. How can I do base64 encoding and decoding with or without a library?
|
There's a nice code sample at the bottom of this post. Very self-contained... |
|||||
|
|
This is a good use case for Objective C categories. For Base64 encoding:
For Base64 decoding:
|
|||||||||||||||||||
|
|
A really, really fast implementation which was ported (and modified/improved) from the PHP Core library into native Objective-C code is available in the QSStrings Class from the QSUtilities Library. I did a quick benchmark: a 5.3MB image (JPEG) file took < 50ms to encode, and about 140ms to decode. The code for the entire library (including the Base64 Methods) are available on GitHub. Or alternatively, if you want the code to just the Base64 methods themselves, I've posted it here: First, you need the mapping tables:
To Encode:
To Decode:
|
|||||||||||||||||||||
|
|
Since this seems to be the number one google hit on base64 encoding and iphone, I felt like sharing my experience with the code snippet above. It works, but it is extremely slow. A benchmark on a random image (0.4 mb) took 37 seconds on native iphone. The main reason is probably all the OOP magic - single char NSStrings etc, which are only autoreleased after the encoding is done. Another suggestion posted here (ab)uses the openssl library, which feels like overkill as well. The code below takes 70 ms - that's a 500 times speedup. This only does base64 encoding (decoding will follow as soon as I encounter it)
I left out the line-cutting since I didn't need it, but it's trivial to add. For those who are interested in optimizing: the goal is to minimize what happens in the main loop. Therefore all logic to deal with the last 3 bytes is treated outside the loop. Also, try to work on data in-place, without additional copying to/from buffers. And reduce any arithmetic to the bare minimum. Observe that the bits that are put together to look up an entry in the table, would not overlap when they were to be orred together without shifting. A major improvement could therefore be to use 4 separate 256 byte lookup tables and eliminate the shifts, like this:
Of course you could take it a whole lot further, but that's beyond the scope here. |
|||||||||||||
|
|
In mvds's excellent improvement, there are two problems. Change code to this:
|
|||
|
|
|
Glad people liked it. The end-game was a little flawed I must admit. Besides rightly setting inp=0 you should either also increase tmpbuf's size to 3, like
or leave out the orring of raw[inp+2]; if we would have a raw[inp+2] != 0 for this chunk we would still be in the loop of course... Either way works, you might consider keeping the final table lookup block identical to the one in the loop for clarity. In the final version I used I did
To add the == Sorry I didn't check RFC's and stuff, should have done a better job! |
|||||||||||
|
|
|||
|
|
|
Here's a compact Objective-C version as a Category on NSData. It takes some thinking about...
Padding can be added if required by making the scope of 'byt' wider and appending 'dest' with (2-byt) "=" characters before returning. A Category can then be added to NSString, thus:
|
||||
|
|
|
iOS includes built in support for base64 encoding and decoding. If you look at These functions are pretty well tested and reliable - unlike many of the implementations you may find in random internet postings.
Don't forget to link against |
|||||
|
protected by Brad Larson♦ Apr 12 '11 at 18:22
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.