i'm writing a Perl script that need to connect to a smtp server in order to send a mail, but i really don't like this kind of things :
my $pass = '123456';
And i found Data::Encrypted, that should allow the user to prompt a it the first time and then store it encrypted.
use Data::Encrypted file => ".passwd", qw(encrypted);
my $password = encrypted('password');
But i cannot make it work, it makes a running time error :
Bad key file format at /Library/Perl/5.12/Data/Encrypted.pm line 78
Is anybody having the same issue, or know another way to hide/protect password ?
md5will helps you, checking sum and all... – loldop Aug 3 '12 at 10:29croak "Bad key file format" unless $id eq PRIVKEY_ID;$id is-----BEGIN RSA PRIVATE KEY-----, PRIVKEY_ID isSSH PRIVATE KEY FILE FORMAT 1.1. – daxim Aug 3 '12 at 11:11