Il giorno gio, 22/06/2006 alle 19.53 +0530,
[EMAIL PROTECTED] ha scritto:
> Hi, 
> 
> Can anyone please tell me where can I find the C code for Base64
> decoding. I have to decode the password stored by Evolution, that is
> base64 encoded, how can I?
A little perl script

#!/usr/bin/perl
use MIME::Base64;
while ($riga = <>)
{
$decoded=decode_base64($riga);
print $decoded;
}

from the shell use
# perl decode64.pl < file_to_decode

or 

#perl decode64.pl
"Write here the encoded string"

Bye
 Ambrogio
_______________________________________________
Evolution-list mailing list
Evolution-list@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-list

Reply via email to