I'd like to do base64 encoding and decoding. But I could not find any support from iPhone SDK.
Any suggestion?
Thanks.
|
I'd like to do base64 encoding and decoding. But I could not find any support from iPhone SDK. Any suggestion? Thanks.
| ||||
|
feedback
|
|
There's a nice code sample at the bottom of this post. Very self-contained... | |||||
feedback
|
|
This is a good use case for Objective C categories. For Base64 encoding:
For Base64 decoding:
| |||||||||||||||||
feedback
|
|
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:
| |||||||||||||||
feedback
|
|
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. | |||||||||||||
feedback
|
|
In mvds's excellent improvement, there are two problems. Change code to this:
| |||
|
feedback
|
|
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! | |||||||||
feedback
|
| |||
|
feedback
|
|
Found the working code in this link http://imthi.com/blog/programming/iphone-sdk-base64-encode-decode.php | |||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
Base64 Encoding in Cocoa. Should work on Cocoa Touch since it's OpenSSL. | |||||
feedback
|
|
I've used the NSData extension by Matt Gallager with success. You can find it here: http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html | |||
|
feedback
|
|
I recommend both NSData+Base64.h , NSData+Base64.m I 've use them instead of Base64.h. The error occured when I try to decode some 64-bit Decoded NSString that contain image file | |||
|
feedback
|
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.