
encpassw.pl - Encrypts password in .ini files

Reads the value of a property password in a configuration file ('a la' .ini style),
and rewrites the value with the result of its encryption.
Style .ini configuration files are those with a syntax compatible with Config::IniFiles,
and briefly this means:
# are comments and are ignored.
Also,
blank lines are ignored.
Use this for readability purposes.[ and ].property=value
One property/value pair per line.
See Config::IniFiles for detailed information about syntax.

perl encpassw.pl --inifile=<ini_file>
--section=<section_name_of_ini_file_with_password_param>
[--key=<encryption_decryption_key> ]
[--cipher=<encryption_decryption_algorithm> ]

Name or pathname of file whose password value have to be encrypted. It doen't need to have .ini in its name.
Section name in inifile where the password property is.
Encryption / Decryption key in clear form. Use the same value with DBIx::PasswordIniFile.
Name of an installed cipher algoritm. Cipher algoritma live in namespace Crypt::.
Default is Crypt::Blowfish_PP. If not specified, it must be installed.

Copyright 2005-2008 Enrique Castilla.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.

Enrique Castilla <mailto:ecastillacontreras@yahoo.es|ecastillacontreras@yahoo.es>.