Base64 is a method for encoding data for transfer over the Internet.
1
vote
1answer
55 views
Mime format message
How to read mime encoded files? We have converted .msg file to .mhtml for better reading without MS Outlook. But we cannot read encoded text in bounced mails. message is as
Content-Type: text/html; ...
1
vote
0answers
31 views
android base64 cli conversion utilities
I want to encode a file into android base64. Android's sdk has a utility method that does this. I should be able to avoid doing any Android programming to solve this. There are utilities for windows ...
0
votes
1answer
752 views
Standard Unix tool for decoding base64?
I have variously depended on metamail and munpack in the past, but both of these are suffering from bit rot. metamail has been removed from Debian, and mpack looks like it's about to be removed.
I ...
7
votes
2answers
1k views
Why is base64 needed (aka why can't I just email a binary file)?
I was reading up on Base64 encoding, and found this on Wikipedia:
Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over ...
1
vote
2answers
683 views
Can I encrypt a username password combo before using it with cURL?
I'm making a shell script that reached out to a web service with basic auth. I don't want to have to put in my username and password every time the script runs, but I also don't want to have the combo ...
2
votes
1answer
613 views
Batch encode multiple webfont files into a CSS file?
I want to batch encode several .otf font files into a single CSS file. To my understanding, base64 embedded .otf fonts can be read by most browsers. Since Font-Squirrel's @font-face generator doesn't ...
1
vote
5answers
6k views
Decoding base64 images and saving to a file
I need to save a few base64 images from a web page to actual GIF and JPEG files on my hard drive. Is there a utility out there that can assist me? I've looked around and either I'm not seeing one or ...
1
vote
1answer
535 views
How move files through text (base64, etc)?
Why don't these work when trying to copy a file from one location to another?
1) Base64 encode the file at source, write (binary or ascii) base64 decoded at destination.
2) Open file in notepad, ...
0
votes
2answers
579 views
How can I extract an attachment from the email body (encoded as base64)
How can I extract attachments from an email when they arrive encoded in the body of the email like this:
------ =_NEXTPART_FORMSCAPE_MAIL_message101122101615
Content-Type: application/octet-stream; ...
3
votes
3answers
2k views
How can I convert from hex to base64?
Can anyone recommend a straightforward way/tool to convert hex to base64?
I'm using Linux and OS X.
31
votes
7answers
13k views
OS X: Base64 encode via command line
Is there a terminal command in Mac OS X which will base64 encode a file or stdin?