Re: Encryption recommendations
by Mark Pryor other posts by this author
Aug 8 2008 1:04PM messages near this date
view in the new Beta List Site
Encryption recommendations
|
Problem with lanman
--- On Fri, 8/8/08, Chris O <oror.list@[...].com> wrote:
> From: Chris O <oror.list@[...].com>
> Subject: Encryption recommendations
> To: perl-win32-users@[...].com, perl-win32-users@[...].com
> Date: Friday, August 8, 2008, 12:37 PM
> Hi All!
>
> I need to encrypt txt files on a shared linux web server,
> then decrypt
> & read them on a win32 box. What module(s) are
> recommended for this?
>
Chris,
Perl makes this straightforward and platform independent!
On the Linux side (showing my bias towards RedHat & its clones)
perl-Crypt-CBC
-----------
CBC -- cipher block chaining
this module is a wrapper for the block ciphers and will help control
padding and key derivation (via hashing)
block ciphers include
perl-Crypt-Rijndael (aka AES)
perl-Crypt-3DES
perl-Crypt-Blowfish
perl-Crypt-DES_EDE3
the names I show are redhat package names and map to CPAN like this.
perl-Crypt-Blowfish -> Crypt::Blowfish
on Fedora and Centos my names can be directly used in calls to YUM.
On the Win32 side, you can use CPAN or better yet
http://theory.uwinnipeg.ca/ppms/ or
http://www.bribes.org/perl/ppm/
--
Mark
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@[...].com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Thread:
Chris O
Mark Pryor
|