[BACK]Return to example2.pl CVS log [TXT][DIR] Up to [local] / palm / Palm-Keyring / examples

File: [local] / palm / Palm-Keyring / examples / example2.pl (download)

Revision 1.1, Sun Jan 28 16:17:54 2007 UTC (17 years, 5 months ago) by andrew
Branch: MAIN

the beginnings of a Build.PL for making the stuff for CPAN

#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;

use lib 'lib';
use Palm::Keyring;

my $pdb = new Palm::Keyring;

use YAML;

$pdb->Load("Keys-GtkrNEW.PDB"); 
$pdb->Decrypt('12345');

print Dump $pdb;