- To: Andrew Wilson <will@xxxxxxxxxxxxxxxxxxxxx>
- Subject: Re: [SLUG] Base64 Decoder
- From: Matthew Hannigan <mlh@xxxxxxxxxx>
- Date: Fri Nov 22 16:01:03 2002
- Cc: SLUG <slug@xxxxxxxxxxx>
- User-agent: Mutt/1.2.5.1i
On Fri, Nov 22, 2002 at 02:03:01PM +1100, Andrew Wilson wrote:
> Hay guys,
>
> If anyone can point me in the direction of a working base64 decoder i would
> be most appreciative.
> Prize : cookie
openssl will do it -- no frills though:
openssl base64 -d < inputbase64.txt > output.txt
(that's -d for decode. Encoding is left as
an exercise the reader :-)
Matt