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

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

Revision 1.4, Tue Apr 18 19:39:45 2006 UTC (18 years, 2 months ago) by andrew
Branch: MAIN
Changes since 1.3: +2 -1 lines

Some palmkeyring updates

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

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

my $pdb = new Palm::Keyring;

use YAML;

#print Dumper $pdb

#$pdb->Load("Keys-GtkrNEW.PDB"); 
#$pdb->Decrypt('12345');
$pdb->Load("Keys-Gtkr.PDB"); 
#$pdb->Load("k:/working/Keys-Gtkr.PDB"); 
$pdb->Decrypt('12345');

#--------------------------------------------------
# my $new_record = $pdb->append_Record();
# 
# $new_record->{plaintext} = {
# 	name        => 'Test3',
# 	account     => 'anothertestaccount',
# 	password    => 'adifferentmypass',
# 	description => 'now that really roxorZ!',
# };
# 
#$pdb->Encrypt('12345');
# 
#$pdb->Write("Keys-GtkrNEW.PDB");
#-------------------------------------------------- 

print Dump $pdb;