=================================================================== RCS file: /cvs/palm/Palm-Keyring/examples/example1.pl,v retrieving revision 1.4 retrieving revision 1.8 diff -u -r1.4 -r1.8 --- palm/Palm-Keyring/examples/example1.pl 2006/04/18 20:39:45 1.4 +++ palm/Palm-Keyring/examples/example1.pl 2006/12/06 18:45:42 1.8 @@ -1,37 +1,27 @@ -#!/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; - +#!/usr/bin/perl +use strict; +use warnings; +use diagnostics; + +use lib 'lib'; +use Palm::Keyring; + +my $pdb = new Palm::Keyring; + +use YAML; + +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; +