Crypt::Keyczar version 0.06

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:

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

QUICK START

  1. Create new 'keyset' by 'keyczar' tool:

$ 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__

SUPPORTED CRYPTOGRAPHIC ALGORITHMS(current version)

DEPENDENCIES

This module requires these other modules and libraries:

libcrypto (OpenSSL 0.9.8 or later)
MIME::Base64
JSON (version 1.xxx or 2.xxx)

SEE ALSO

"keyczar" in bin,
perldoc Crypt::Keyczar,
perldoc Crypt::Keyczar::Crypter,
perldoc Crypt::Keyczar::Signer,
http://www.keyczar.org/