Tugger the SLUGger!SLUG Mailing List Archives

Re: [SLUG] Base64 Decoder


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