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

Diff for /palm/Palm-Keyring/examples/example1.pl between version 1.7 and 1.8

version 1.7, 2006/11/10 04:52:27 version 1.8, 2006/12/06 18:45:42
Line 10 
Line 10 
   
 use YAML;  use YAML;
   
 #print Dumper $pdb  my $new_record = $pdb->append_Record();
   
 $pdb->Load("Keys-GtkrNEW.PDB");  $new_record->{plaintext} = {
 #$pdb->Load("Keys-Gtkr.PDB");          name        => 'Test3',
 #$pdb->Load("k:/working/Keys-Gtkr.PDB");          account     => 'anothertestaccount',
 $pdb->Decrypt('12345');          password    => 'adifferentmypass',
           description => 'now that really roxorZ!',
   };
   
 #--------------------------------------------------  $pdb->Encrypt('12345');
 # my $new_record = $pdb->append_Record();  
 #  $pdb->Write("Keys-GtkrNEW.PDB");
 # $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;  print Dump $pdb;
   

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>