vote up 4 vote down star
2

I would like to understand it better.

Do I really need it? Can't I simple use pure string?

I heard it expand the size of things encoded by 30% (at least for images).

flag

Base64 encoding emits 4 bytes of printable data for every 3 bytes of binary data. If you also put newlines in periodically (eg, mail programs limit the line length to 64 or 72 characters), then you get one more byte 48 or 54 input bytes for the newline (unless you play with CRLF line endings when you get 2 bytes per line). – Jonathan Leffler Nov 5 at 20:24

5 Answers

vote up 11 vote down check

Originally some protocols only allowed 7 bit, and sometimes only 6 bit, data.

Base64 allows one to encode 8 bit data into 6 bits for transmission on those types of links.

Email is an example of this.

link|flag
1  
Mostly 7 bit because the 8th bit was used for parity on many serial transmission protocols. – Paul Tomblin Nov 5 at 19:31
Great detail i never thought. I feel updated. – Ismael Nov 5 at 19:49
vote up 13 vote down

The primary use case of base64 encoding is when you want to store or transfer data with a restricted set of characters; i.e. when you can't pass an arbitrary value in each byte.

link|flag
1  
And also, if You want to send binary data over string protocols (like JSON) where bianry could break Your string due to unwanted chars like quotes 0x00, etc... – Rafal Ziolkowski Nov 5 at 19:31
Rafal: That's basically an instance of a "restricted character set". – Mehrdad Afshari Nov 5 at 19:32
I wish I could approve your answer too. Great answer. – Ismael Nov 5 at 19:51
vote up 2 vote down

One application is to transfer binary data in contexts where only characters are allowed. E.g. in XML documents/transfers. XML-RPC is an example of this.

link|flag
vote up 0 vote down

Whether or not to use it depends on what you're using it for.

I've used it mostly for encoding binary data to pass through a mechanism that has really been created for text files. For example - when passing a digital certificate request around or retrieving the finished digital certificate -- in those cases, it's often very convenient to pass the binary data as Base 64 via a text field on a web form.

I probably wouldn't use it if you have something that is already text and you just want to pass it somewhere.

link|flag
vote up 0 vote down

I use it for passing around files that tend to get chewed up by email programs because they look like text files (e.g. HL7 transcripts for replay).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.