Keyczar is an open source cryptographic toolkit designed to make it easier and safer for devlopers to use cryptography in their applications. Keyczar supports authentication and encryption with both symmetric and asymmetric keys. Some features of Keyczar include:
To install this module type the following:
perl Makefile.PL
make
make test
make install
$ keyczar create --location=/path/to/keyset --purpose=crypt
2. Add new key to 'keyset':
$ keyczar addkey --location=/path/to/keyset --status=primary
3. Encrypt message with 'keyset':
$ perl > msg.txt
use Crypt::Keyczar::Crypter;
my $kcz = Crypt::Keyczar::Crypter->new("/path/to/keyset");
print $kcz->encrypt('Hello World!');
__END__
This module requires these other modules and libraries:
libcrypto (OpenSSL 0.9.8 or later)
MIME::Base64
JSON (version 1.xxx or 2.xxx)
"keyczar" in bin,
perldoc Crypt::Keyczar,
perldoc Crypt::Keyczar::Crypter,
perldoc Crypt::Keyczar::Signer,
http://www.keyczar.org/