[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.9 and 1.10

version 1.9, 2007/01/30 04:59:55 version 1.10, 2007/08/10 05:13:31
Line 1 
Line 1 
 #!/usr/bin/perl  #!/usr/bin/perl
 # $RedRiver$  # $RedRiver: example1.pl,v 1.9 2007/01/30 04:59:55 andrew Exp $
 use strict;  use strict;
 use warnings;  use warnings;
   
Line 10 
Line 10 
 my $rec = $pdb->append_Record();  my $rec = $pdb->append_Record();
   
 my $acct = {  my $acct = {
         name      => 'Test3',          0 => { data => 'Test3' },
         account   => 'anothertestaccount',          1 => { data => 'anothertestaccount' },
         password  => 'adifferentmypass',          2 => { data => 'adifferentmypass' },
         notes     => 'now that really roxorZ!',          255 => { data => 'now that really roxorZ!' },
 };  };
   
 $pdb->Encrypt($rec, $acct);  $pdb->Encrypt($rec, $acct);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

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