https://github.com/rocketraman/keyring-to-keypassx
Convert from keyring (palm os) xml to keypassx xml
https://github.com/rocketraman/keyring-to-keypassx
Last synced: 4 months ago
JSON representation
Convert from keyring (palm os) xml to keypassx xml
- Host: GitHub
- URL: https://github.com/rocketraman/keyring-to-keypassx
- Owner: rocketraman
- Created: 2009-07-22T03:53:47.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2025-06-03T12:55:41.000Z (about 1 year ago)
- Last Synced: 2025-10-29T06:20:41.859Z (8 months ago)
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Simple XML stylesheet to convert from gnu keyring (palm os) XML file to a keypassx (1) XML file.
To export a Palm pdb file to XML, download xmlexport.jar from
http://gnukeyring.sourceforge.net/conduits.html
Execute the export e.g.
java -jar xmlexport.jar Keys-Gtkr.pdb password > keyring.xml
It should create an XML file with the form:
Execute the stylesheet with an XSLT v2 processor, such as Saxon e.g.
java -jar saxon9.jar -xsl:keyring-to-keypassx.xsl -s:keyring.xml -o:keypass.xml
The keypass.xml file should be importable into keypassx. One group will be created for each
category in keyring.
Notes:
(1) To export to keepass instead of keepassx, check out:
http://github.com/philipp/keyring2keepass/