Operating System - HP-UX
1755726 Members
2704 Online
108837 Solutions
New Discussion юеВ

Perl cpan data-encrypted-0.07 module

 
generic_1
Respected Contributor

Perl cpan data-encrypted-0.07 module

Hello I have been trying to get the data-encrypted module working under HPUX. I was curoius if anyone else can get it to work, and what they had to do to get the module working.

Thanks.
9 REPLIES 9
H.Merijn Brand (procura
Honored Contributor

Re: Perl cpan data-encrypted-0.07 module

Data::Encrypted is rather old. Why do you want it? There are much better - and actively maintained - modules for (En/De)Crypt(ing) on CPAN

ftp://download.xs4all.nl/pub/mirror/CPAN/modules/by-module/Crypt/
and
ftp://download.xs4all.nl/pub/mirror/CPAN/modules/by-module/Digest/

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
generic_1
Respected Contributor

Re: Perl cpan data-encrypted-0.07 module

I am looking at the functionality to store script data encrypted, and to be able to retrieve it on its own for use.
generic_1
Respected Contributor

Re: Perl cpan data-encrypted-0.07 module

Procura I want something that encrypts scripted passwords. Do you have have somthing more up to date that will ask for the password if it doesnt have and save it encrypted to a file, if it has it, yank it from the file and decrypt it on the fly for use in your perl?
generic_1
Respected Contributor

Re: Perl cpan data-encrypted-0.07 module

Anyone willing to test this module whos versed in Perl? Im curious why it seems to have problems under HPUX.
Ganesha Sridhara
Honored Contributor

Re: Perl cpan data-encrypted-0.07 module

User PPM to search and install required module with following steps:

-------------------------
Installing Perl Module through PPM

See Also
http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/

go to command prompt

(On Linux to get PPM prompt execute > perl -MCPAN -e shell )

1. set HTTP_proxy=http:

2. ppm

in ppm prompt say:
search

after getting modue then type
install



3. Add the repository name

repository add oi http://www.roth.net/perl/packages/

4. Install PPD directly

install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd

install http://cpan.org/authors/id/S/SO/SOMMAR/mssql-1.008.zip



PPM FAQ

http://aspn.activestate.com/ASPN/docs/ActivePerl/faq/ActivePerl-faq2.html#search

-------------------------
H.Merijn Brand (procura
Honored Contributor

Re: Perl cpan data-encrypted-0.07 module

It does have quite a few weird dependencies. If you don't have these installed, it won't work:

l1:/pro/3gl/CPAN/Data-Encrypted-0.07 106 > perl Makefile.PL
Checking if your kit is complete...
Looks good
Warning: prerequisite Crypt::RSA 0 not found.
Warning: prerequisite File::HomeDir 0 not found.
Warning: prerequisite Term::ReadPassword 0 not found.
Writing Makefile for Data::Encrypted
l1:/pro/3gl/CPAN/Data-Encrypted-0.07 107 >

Since I am not installing those 3 other modules (which might again depend on more), I cannot test.

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
generic_1
Respected Contributor

Re: Perl cpan data-encrypted-0.07 module

Its amazing how many cpan modules dont work :). If I ever get this puppy working, its becoming an executable LOL. So it can be transported with less pain.
generic_1
Respected Contributor

Re: Perl cpan data-encrypted-0.07 module

Have you ever written anything that works better Procura or anyone that you are willing to share? The described functionality of the module is very neat. Getting it working is a pain. It doesnt seam to be limited to accounts and passwords either for its encryption.
H.Merijn Brand (procura
Honored Contributor

Re: Perl cpan data-encrypted-0.07 module

I have (so far) not written anything similar (in Perl), and currently I'm too short in time to take the temptation. Sorry.

If you want the password(s) to be consistent over sessions, have you considered shared memory?

# perldoc -f crypt

could also hint you to solutions

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn