Annotation of palm/Palm-Keyring/TODO, Revision 1.3
1.3 ! andrew 1: Better error reporting. Learn how the rest of the modules do it, then support that.
1.1 andrew 2:
1.3 ! andrew 3: make example4 actually a gui keyring app
! 4:
! 5: Support the Last Modified date. Johan does it like this:
! 6: if ( $x && (my $packed_date = unpack("n", $x)) ) {
! 7: my @tm = ((($packed_date & 0xFE00) >> 9) + 4,
! 8: (($packed_date & 0x01E0) >> 5) - 1,
! 9: ($packed_date & 0x001F),
! 10: 0, 0, 0);
! 11: $x = \@tm;
! 12: }
! 13: else {
! 14: undef $x;
! 15: }
! 16:
! 17: on those same lines, mark record as "dirty" when we Encrypt.
! 18:
! 19: Make sure my PackRecord and ParseRecord return what they should, I think they may not. Maybe change the 'name' field to be 'name' not 'data'.
1.1 andrew 20:
21: Support the v5 or newer databases
22:
1.3 ! andrew 23: $RedRiver: TODO,v 1.2 2007/01/30 05:04:09 andrew Exp $
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>