le 13/09/2006, Brian K. White nous écrivait : > Sent: Wednesday, September 13, 2006 11:08 AM > alias B64enc='openssl base64' > alias B64dec='openssl base64 -d' > > I've been using the stand-alone: > http://www.fourmilab.ch/webtools/base64/ > > I never realised I already had it in openssl. > Thanks for the tip. I didn't know that before yesterday but it was a bad idea in fact : openssl base64 doesn't handle utf8 encoded content. So i found recode command. finaly : alias b64dec='recode b64..data' alias b64enc='recode data..b64' benches are welcome ;) regards, mc