You can subscribe to this list here.
| 2000 |
Jan
|
Feb
(9) |
Mar
(4) |
Apr
(5) |
May
(27) |
Jun
(3) |
Jul
(5) |
Aug
(3) |
Sep
(25) |
Oct
(21) |
Nov
(2) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(3) |
Feb
|
Mar
(3) |
Apr
(9) |
May
(2) |
Jun
(20) |
Jul
(9) |
Aug
(2) |
Sep
(5) |
Oct
|
Nov
(8) |
Dec
(3) |
| 2002 |
Jan
(3) |
Feb
(6) |
Mar
(13) |
Apr
(20) |
May
(10) |
Jun
(6) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
(10) |
Feb
|
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(3) |
Aug
(1) |
Sep
|
Oct
(12) |
Nov
(1) |
Dec
(5) |
| 2004 |
Jan
(3) |
Feb
(3) |
Mar
|
Apr
(6) |
May
(4) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
| 2005 |
Jan
(9) |
Feb
(8) |
Mar
(12) |
Apr
(8) |
May
|
Jun
(6) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
(3) |
| 2006 |
Jan
(3) |
Feb
(3) |
Mar
(3) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(2) |
Dec
|
| 2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
(9) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
|
From: Michael B. <m.g...@we...> - 2006-05-20 21:20:35
|
I had the same problem with KeyringEditor v1.1 not showing any of the records in my v4 database. I've no experience in Java or Palm programming but from http://tinyurl.com/zassz I think KeyringEditor is filtering dirty records where it should filter deleted records. I've added an exception handler in Crypto.java to handle the ArrayIndexOutOfBoundsException. I think I've found another bug where KeyringEditor ignores empty (deleted) categories and thus gets the wrong cross references to the entries. Asume you deleted category #5. Then in the database category #5 is the empty string and thus it is skipped. Now category #6 becomes #5 in KeyringEditor and #7 becomes #6. Any entries which have category #6 now will show category #7. Last I changed the CSV export format to be compatible with Passwordmanager PWM/Pi on my Zaurus. (http://www.pi-sync.net/html/pwm_pi.html) This is my patch: diff -w -u keyring_org/Crypto.java keyring/Crypto.java --- keyring_org/Crypto.java 2005-05-26 22:28:36.000000000 +0200 +++ keyring/Crypto.java 2006-05-20 19:19:58.000000000 +0200 @@ -593,8 +593,13 @@ =20 String notes =3D Model.sliceString(plainText, nextItem, -1); nextItem +=3D notes.length() + 1; - - byte[] datetype =3D Model.sliceBytes(plainText, nextItem, 2); + byte[] datetype =3D {0, 0}; + try { + datetype =3D Model.sliceBytes(plainText, nextItem, 2); + } + catch(Exception e) { + ; + } =20 if(fieldName.equals("account")) return (Object)account; if(fieldName.equals("password")) return (Object)password; diff -w -u keyring_org/Model.java keyring/Model.java --- keyring_org/Model.java 2005-09-25 12:50:32.000000000 +0200 +++ keyring/Model.java 2006-05-20 22:38:51.000000000 +0200 @@ -70,7 +70,7 @@ /** * CSV-Separator */ - private static char csvSeparator =3D ';'; // default + private static char csvSeparator =3D ','; // compatible with PWM/Pi =20 // PDB header information (readPDBHeader) /** @@ -355,9 +355,14 @@ for(int i=3D0; i<16; i++) { String categoryName =3D sliceString(data, pdbAppInfoOffset + 2 + (16 * = i), 16); =20 - if (!categoryName.equals("")) { - categories.add(categoryName); + if(DEBUG) { + System.out.println(i + ": " + categoryName); } +// if (!categoryName.equals("")) { +// categories.add(categoryName); +// } + // empty categories must be added to get correct cross references to = entries + categories.add(categoryName); } =20 if(pdbVersion =3D=3D 5) { @@ -408,7 +413,10 @@ for(int i=3Dstart; i<pdbNumRecords; i++) { =20 // check record attribute - if((pdbAttribute[i] & 0xF0) =3D=3D 0x40) { + //if((pdbAttribute[i] & 0xF0) =3D=3D 0x40) { +=09=09 + // check for deleted record + if((pdbAttribute[i] & 0x80) =3D=3D 0x00) { // determine entry length if(i =3D=3D pdbNumRecords - 1) { entryLength =3D pdbLength - pdbOffset[i]; @@ -1066,14 +1074,15 @@ =20 for(Enumeration e =3D entries.elements(); e.hasMoreElements(); ) { Entry entry =3D (Entry)e.nextElement(); - + // CSV file compatible with PWM/Pi String buffer =3D - "" + '"' + entry.getEntryId() + '"' + csvSeparator + - '"' + categories.elementAt(entry.getCategory()) + '"' + csvSeparator + + "" + '"' + categories.elementAt(entry.getCategory()) +=20 + '"' + csvSeparator + csvSeparator + '"' + entry.getTitle() + '"' + csvSeparator + '"' + entry.getAccount() + '"' + csvSeparator + '"' + entry.getPassword() + '"' + csvSeparator + - '"' + entry.getDate() + '"' + "\n"; + csvSeparator + csvSeparator + + '"' + entry.getNotes().replace('\n',' ').replace('\200','=A4') + '"' + = "\n"; =20 out.write(buffer.toCharArray()); } |
|
From: Raman G. <roc...@fa...> - 2006-05-03 04:00:59
|
I am posting here because KeyringEditor by Markus Griessnig does not appear to have any mailing list. I noticed that KeyringEditor v1.1 did not show all of the records that are in my v4 database. Viewing the source, it only showed records where the pdbAttribute & 0xFO == 0x40. I'm not familiar with the Palm database format, so I'm not sure why this mask is being applied and the effect of the if statement. However, when I remove the if statement from the code, all of my records are displayed. There is also another strange item whereby sometimes the entry plaintext after decryption is truncated (i.e. the date field is less than two bytes long). This causes an ArrayIndexOutOfBoundsException in KeyringEditor when the entry in question is clicked. Does anyone have the author's contact information so that I can contact him about these issues? BTW, my patch to fix both issues is attached. Cheers, Raman Gupta |
|
From: Alexander S. <asa...@sw...> - 2006-03-16 09:12:06
|
Lukas Ruf <ru...@ra...> writes: > syncing my jpilot with gnu keyring makes my palm crash: The error > message: > > DataMgr.c, Line:5964, > Invalid uniqueID passed The same for me. PalmOS 3.5 (Palm m105), keyring 1.2.3 This start appears after I remove some records :-( -- Alexander Sashnov ICQ UIN: 79404252 JID: asa...@ja... |
|
From: Lukas R. <ru...@ra...> - 2006-03-03 14:40:17
|
> Jochen Hoenicke <hoe...@gm...> [2006-03-03 15:28]: > > On 2/25/06, Lukas Ruf <ru...@ra...> wrote: > > > > > Looking into the PalmOS sources this error means that the > > > function DmFindRecordByID is called with an invalid uniqueID. > > > The uniqueID is used to identify records even if they moved in > > > the database. I am not sure whether jpilot does something with > > > the unique ids. From the first look it seems to be a bug in the > > > jpilot keyring plugin or in jpilot itself. > > > > > > > Can I fix this somehow? > > I just searched the jpilot bug report forum. This bug is already > filed there: http://bugs.jpilot.org/1594 > > There is no fix for it yet. > thanks! wbr, Lukas -- Lukas Ruf <http://www.lpr.ch> | Ad Personam rbacs <http://wiki.lpr.ch> | Restaurants, Bars and Clubs Raw IP <http://www.rawip.org> | Low Level Network Programming Style <http://email.rawip.org> | How to write emails <http://lists.lpr.ch/muttprint> | muttprint mailing list |
|
From: Jochen H. <hoe...@gm...> - 2006-03-03 14:28:47
|
On 2/25/06, Lukas Ruf <ru...@ra...> wrote: > > > Looking into the PalmOS sources this error means that the function > > DmFindRecordByID is called with an invalid uniqueID. The uniqueID > > is used to identify records even if they moved in the database. I > > am not sure whether jpilot does something with the unique ids. From > > the first look it seems to be a bug in the jpilot keyring plugin or > > in jpilot itself. > > > > Can I fix this somehow? I just searched the jpilot bug report forum. This bug is already filed ther= e: http://bugs.jpilot.org/1594 There is no fix for it yet. Regards, Jochen -- Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: Lukas R. <ru...@ra...> - 2006-02-25 17:07:35
|
> Jochen Hoenicke <hoe...@gm...> [2006-02-08 20:24]: > thanks for your answer and appologies for the delay. > 2006/2/7, Lukas Ruf <ru...@ra...>: > > Dear all, > > > > syncing my jpilot with gnu keyring makes my palm crash: The error > > message: > > > > DataMgr.c, Line:5964, Invalid uniqueID passed > > This happens on HotSync, right? And you're probably using PalmOS > 3.5. > Yes. > Looking into the PalmOS sources this error means that the function > DmFindRecordByID is called with an invalid uniqueID. The uniqueID > is used to identify records even if they moved in the database. I > am not sure whether jpilot does something with the unique ids. From > the first look it seems to be a bug in the jpilot keyring plugin or > in jpilot itself. > Can I fix this somehow? wbr, Lukas -- Lukas Ruf <http://www.lpr.ch> | Ad Personam rbacs <http://wiki.lpr.ch> | Restaurants, Bars and Clubs Raw IP <http://www.rawip.org> | Low Level Network Programming Style <http://email.rawip.org> | How to write emails |
|
From: Jochen H. <hoe...@gm...> - 2006-02-08 19:31:12
|
2006/2/7, Lukas Ruf <ru...@ra...>: > Dear all, > > syncing my jpilot with gnu keyring makes my palm crash: The error > message: > > DataMgr.c, Line:5964, > Invalid uniqueID passed This happens on HotSync, right? And you're probably using PalmOS 3.5. Looking into the PalmOS sources this error means that the function DmFindRecordByID is called with an invalid uniqueID. The uniqueID is used to identify records even if they moved in the database. I am not sure whether jpilot does something with the unique ids. From the first look it seems to be a bug in the jpilot keyring plugin or in jpilot itself. Regards, Jochen -- Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: Lukas R. <ru...@ra...> - 2006-02-07 21:31:00
|
Dear all,
syncing my jpilot with gnu keyring makes my palm crash: The error
message:
DataMgr.c, Line:5964,
Invalid uniqueID passed
Any idea how I can solve the problem?
I am running <keyring-1.2.3-en>.
Thanks for any hints!
wbr,
Lukas
--
Lukas Ruf <http://www.lpr.ch> | Ad Personam
rbacs <http://wiki.lpr.ch> | Restaurants, Bars and Clubs
Raw IP <http://www.rawip.org> | Low Level Network Programming
Style <http://email.rawip.org> | How to write emails
|
|
From: Greg N. <hap...@kc...> - 2006-01-12 17:10:46
|
On Thu, Jan 12, 2006 at 05:38:49PM +0100, Christian Nowak wrote: > I have been a longtime user of keyring and appreciate the program a lot. Now > my Palm got broken. Is there any way I can recover the passwords I have > stored in Keyring from the Backup data on my PC? Take a look at <http://gnukeyring.sourceforge.net/conduits.html>. There are several apps listed which can do what you ask. |
|
From: Chris G. <ch...@ar...> - 2006-01-12 16:44:13
|
On Thu, Jan 12, 2006 at 05:38:49PM +0100, Christian Nowak wrote:
> Hi!
>
> I have been a longtime user of keyring and appreciate the program a lot. Now
> my Palm got broken. Is there any way I can recover the passwords I have
> stored in Keyring from the Backup data on my PC?
>
You can certainly do it if the PC is running Linux, jpilot (Linux
equivalent of Palm Desktop) has a keyring plugin.
I have an inkling that there may be a similar keyring plugin for Palm
Desktop but I'm not quite sure about that.
--
Chris Green (ch...@ar...)
"Never ascribe to malice that which can be explained by incompetence."
|
|
From: Christian N. <Chr...@gm...> - 2006-01-12 16:38:58
|
Hi! I have been a longtime user of keyring and appreciate the program a lot. Now my Palm got broken. Is there any way I can recover the passwords I have stored in Keyring from the Backup data on my PC? Thanks a lot for your help! Christian -- DSL-Aktion wegen großer Nachfrage bis 28.2.2006 verlängert: GMX DSL-Flatrate 1 Jahr kostenlos* http://www.gmx.net/de/go/dsl |
|
From: Chris G. <ch...@ar...> - 2005-12-30 11:24:32
|
On Thu, Dec 29, 2005 at 04:24:39PM -0500, Bill wrote:
> Quoting Chris Green, Thu, 29 Dec 2005:
>
> >Can anyone explain why somne of the names in the list that comes up
> >when you run Keyring in jpilot (0.99.8) are highlighted in a different
> >colour? Just a few are highlighted and I can see no rhyme nor reason
> >in it.
>
> Chris,
>
> They are records that have changed since the last sync. Once you
> sync, the highlighting goes away. Just tried it myself to confirm.
>
Aaaaaahhhh!!! :-)
What a sensible idea, it's just a pity that it doesn't seem to tell
you that anywhere.
Thanks very much!
--
Chris Green (ch...@ar...)
"Never ascribe to malice that which can be explained by incompetence."
|
|
From: Bill <gnu...@st...> - 2005-12-29 21:24:51
|
Quoting Chris Green, Thu, 29 Dec 2005: > Can anyone explain why somne of the names in the list that comes up > when you run Keyring in jpilot (0.99.8) are highlighted in a different > colour? Just a few are highlighted and I can see no rhyme nor reason > in it. Chris, They are records that have changed since the last sync. Once you sync, the highlighting goes away. Just tried it myself to confirm. - Bill Baltimore, MD, USA |
|
From: Chris G. <ch...@ar...> - 2005-12-29 19:21:54
|
Can anyone explain why somne of the names in the list that comes up
when you run Keyring in jpilot (0.99.8) are highlighted in a different
colour? Just a few are highlighted and I can see no rhyme nor reason
in it.
--
Chris Green (ch...@ar...)
"Never ascribe to malice that which can be explained by incompetence."
|
|
From: Martin P. <mar...@gm...> - 2005-09-13 22:08:55
|
---------- Forwarded message ---------- From: Nate Schley <Nat...@di...> Date: 10-Sep-2005 23:19 Subject: FYI: gnukeyring password entry failed when I had Palm's IBM Java VM loaded on my Tungsten T5 To: mb...@sa... =20 Martin,=20 =20 Greetings! I loaded the JVM off the palm website. Afterwards, I could not successfully enter my Kerying password. When I removed the JVM, Keyring worked OK. =20 Also, here's a suggestion for a vrey small feature/enhancement: make it so that just by writing a character, the selection "caret" automatically moves to the first record in the list that matches what's been typed hitherto. =20 Nice product!=20 =20 Thanks,=20 =20 Nate=20 --=20 Martin |
|
From: will p. <wp...@ic...> - 2005-08-18 18:36:17
|
Greetings all -- (I sent a similar note to Markus Griessnig, but not sure if I had the right email... -- I would greatly appreciate any insight others might have!) I've recently come upon KeyringEditor, and it looks clean and useful! However, I would *really* like the option to edit passwords in spreadsheet form, and then *import* a .csv into KeyringEditor, for sync with my palm. Since many of my passwords are in an encrypted Excel sheet on my desktop, this would be very handy. Has anyone found a way to (effectively) import csv data? Are there any plans for such a feature that you've heard of? Some advantages I see for Keyring + KeyringEditor with csv-import: --------------------------------------------------------------------- 1. Affords flexibility for initial data entry and ongoing data maintenance 2. Allows others (who don't have KeyringEditor) to contribute/maintain the password list via a spreadsheet program. Those updates could then be simply be imported into KeyringEditor and sync'd w/ the palm. 3. Circumvents any need for use of non-secure (eg. outlook) conduits. Many password programs use Memo Pad import/export, but this is not secure. Seems to me this would make KeyringEditor *very* versatile. Seconds, anyone? Other thoughts? Thanks in advance! --Will |
|
From: Jochen H. <hoe...@gm...> - 2005-06-03 14:08:14
|
2005/6/3, Ian Soboroff <ian...@ni...>: > I found yesterday that another program, Plucker, was giving the same > error when trying to pull up the category screen. I cleaned out all > saved and unsaved prefs with Filez and that seemed to fix it. Perhaps > I'll try the same for Keyring? What does Keyring keep in the prefs? In saved preferences it stores=20 - settings of the preferences dialog - settings of the generate dialog - status of veil password check box In unsaved preference only the last status of the random pool is stored. Regards, Jochen --=20 Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: Ian S. <ian...@ni...> - 2005-06-03 12:51:35
|
"Jochen Hoenicke" <Hoe...@In...> writes: > There are already some working java programs on the conduits page. > > Alternatively, you can check out keyring-link from the cvs repository, see: > https://sourceforge.net/cvs/?group_id=306 That's perfect, I will look into that. I found yesterday that another program, Plucker, was giving the same error when trying to pull up the category screen. I cleaned out all saved and unsaved prefs with Filez and that seemed to fix it. Perhaps I'll try the same for Keyring? What doesn Keyring keep in the prefs? Thanks for your help, Ian |
|
From: Jochen H. <Hoe...@In...> - 2005-06-03 09:33:28
|
On Thursday 02 June 2005 21:42, you wrote: > "Jochen Hoenicke" <Hoe...@In...> writes: >=20 > > On Thursday 02 June 2005 17:05, Ian Soboroff wrote: > >> I type in my password, and it validates (because if I have a=20 > >> typo it tells me that the password is wrong), but it crashes in > >> "MemoryMgr.c, Line:3645, NULL handle". I have to pin-reset at this > >> point. > > > > The error message doesn't really help :( >=20 > That would be PalmOS. I assume that some data corruption is causing > the decrypt routine to run off the end of the record into pointer lala > land. You can try upgrading to keyring-2.0-pre4. I'm using it for some time without problems. It's upgrade procedure is more careful when reading records, so it may be better in recovering the records. Unfortunately there is no way back to keyring-1.2.3 then. > > http://gnukeyring.sf.net/keyring-recover/ >=20 > Reading the contents of the jarfile at the above URL, it looks like > your just working at the Palm record level. Perhaps your Java app > could be extended to decrypt the data given the password? If so it > could probably give me more informative error messages than Keyring > can. There are already some working java programs on the conduits page. Alternatively, you can check out keyring-link from the cvs repository, see: https://sourceforge.net/cvs/?group_id=3D306 The modulename is keyring-link The directory contains the C-code but there is a java directory with some=20 code to read and decrypt the pdb files. The java code uses JCE (Java Cryptographic Environment). You need to write your own code to open the database and extracts its contents though. Use it like this: KeyringLibrary library =3D new net.sf.gnukeyring.decoder.PDBKeyringLibrar= y(); library.setFilename(new File("Keys-Gtkr.pdb")); library.unlock("<secret>"); Iterator i =3D libraries.getEntries().iterator(); while (i.hasNext()) { KeyringEntry entry =3D (KeyringEntry) i.next(); System.err.println(entry.getName()); System.out.println(entry.getField("Account")); System.out.println(entry.getField("Password")); System.out.println(entry.getField("Notes")); System.out.println(entry.getField("Changed")); } Regards, Jochen =2D-=20 Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: Ian S. <ian...@ni...> - 2005-06-02 19:42:37
|
"Jochen Hoenicke" <Hoe...@In...> writes: > On Thursday 02 June 2005 17:05, Ian Soboroff wrote: >> >> My T2 suffered a bad crash, and I had to restore from backup. >> Unfortunately, something seems to have gone awry in my keyring >> database. >> >> I can see all the records, but if I try to access one of them, Keyring >> crashes. > > Does it happen for all records, or only for one record? All the ones I've tried. >> I type in my password, and it validates (because if I have a >> typo it tells me that the password is wrong), but it crashes in >> "MemoryMgr.c, Line:3645, NULL handle". I have to pin-reset at this >> point. > > The error message doesn't really help :( That would be PalmOS. I assume that some data corruption is causing the decrypt routine to run off the end of the record into pointer lala land. >> If I install Keyring (and the libs) on freshly-hard-reset Palm, it >> lets me create a new password and new records fine. But if I restore >> the Keys-Gtkr.pdb file, I get the error again. > > There is one known problem, which I currently don't fully > understand. The HotSync Backup seems to merge the database from the > Palm with that on the PC and apparently it can lead to a weird > problem: If the password has been changed on the palm the old > password verification hash is still kept on the PC. After restoring > from the backup it may happen that only the old password is accepted > as valid, but that password decrypts the entries to garbage. I'm > currently testing a small java program to remove the password > verification hash from the database, see > http://gnukeyring.sf.net/keyring-recover/ > > Do you think this could be the problem, i.e. is keyring only accepting an > old password? I haven't changed the password, and I'm using pilot-xfer under Linux rather than Palm Desktop, so I don't think that's the problem. Reading the contents of the jarfile at the above URL, it looks like your just working at the Palm record level. Perhaps your Java app could be extended to decrypt the data given the password? If so it could probably give me more informative error messages than Keyring can. Ian |
|
From: Jochen H. <Hoe...@In...> - 2005-06-02 18:45:29
|
On Thursday 02 June 2005 17:05, Ian Soboroff wrote: >=20 > My T2 suffered a bad crash, and I had to restore from backup. > Unfortunately, something seems to have gone awry in my keyring > database. >=20 > I can see all the records, but if I try to access one of them, Keyring > crashes.=20 Does it happen for all records, or only for one record? > I type in my password, and it validates (because if I have a=20 > typo it tells me that the password is wrong), but it crashes in > "MemoryMgr.c, Line:3645, NULL handle". I have to pin-reset at this > point. The error message doesn't really help :( > If I install Keyring (and the libs) on freshly-hard-reset Palm, it > lets me create a new password and new records fine. But if I restore > the Keys-Gtkr.pdb file, I get the error again. There is one known problem, which I currently don't fully understand. The=20 HotSync Backup seems to merge the database from the Palm with that on the PC and apparently it can lead to a weird problem: If the password has been changed on the palm the old password verification hash is still kept on the PC. After restoring from the backup it may happen that only the old passwo= rd=20 is accepted as valid, but that password decrypts the entries to garbage. I'm currently testing a small java program to remove the password verificat= ion hash from the database, see http://gnukeyring.sf.net/keyring-recover/ Do you think this could be the problem, i.e. is keyring only accepting an old password? Regards, Jochen =2D-=20 Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: Ian S. <iso...@ac...> - 2005-06-02 15:05:56
|
My T2 suffered a bad crash, and I had to restore from backup. Unfortunately, something seems to have gone awry in my keyring database. I can see all the records, but if I try to access one of them, Keyring crashes. I type in my password, and it validates (because if I have a typo it tells me that the password is wrong), but it crashes in "MemoryMgr.c, Line:3645, NULL handle". I have to pin-reset at this point. If I install Keyring (and the libs) on freshly-hard-reset Palm, it lets me create a new password and new records fine. But if I restore the Keys-Gtkr.pdb file, I get the error again. Can someone help me go about recovering what I can out of this database? Thanks, Ian |
|
From: Jochen H. <hoe...@gm...> - 2005-04-29 14:04:04
|
2005/4/28, lsc...@sb... <lsc...@sb...>: > Downloaded current version keyring-1.2.3-en.zip for my > Treo 650. Question can GNU keyring 1.0 version files > been accessed with 1.2.3? Yes, it should work. If you install a new keyring version over your old (or if you install an old Keys-Gtkr.pdb overwriting the new one), keyring should ask on the next start, whether it should upgrade the databases (if you say no, it quits immediately). Thinking about it, if I remember correctly the database format hasn't chang= ed between 1.0 and 1.2.3, so it should be no problem at all. In that case it wouldn't even need to upgrade. However, it is not possible to merge two different keyring databases. Regards, Jochen --=20 Jochen Hoenicke, University of Oldenburg, 26111 Oldenburg, Germany Email: hoe...@in... Tel: +49 441 798 3124 |
|
From: <lsc...@sb...> - 2005-04-28 19:41:59
|
Downloaded current version keyring-1.2.3-en.zip for my Treo 650. Question can GNU keyring 1.0 version files been accessed with 1.2.3? Thanks, Lonnie |
|
From: Eddie M. <li...@he...> - 2005-04-15 15:57:45
|
I've put a beta but feature complete conduit. Release and source can be download from. http://www.heorot.org/wordpress/keyring.php I'd appreciate if daring folks would give it a try and send me feedback. Install and usage docs are in the release zip file. Be sure to back up your keys-gtkr.pdb file first. I'm starting to work on a gui to go a long with it, for now the command line tool will have to suffice. The conduit itself is self contained, the command line tool requires a Java2 jre. thanks, Eddie |