0.0
No commit activity in last 3 years
No release in over 3 years
This is fork of Tony Pitluga's Ruby API for keepassx with read-write support.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0
>= 0.8.7, ~> 0.8
>= 0.1.1, ~> 0.1
~> 3.0
 Project Readme

Keepassx

This is fork of Tony Pitluga's Ruby API for keepassx with read-write support.

Installation

gem install ruby-keepassx

or if you use bundler

gem 'ruby-keepassx'

Usage

require 'keepassx'

database = Keepassx::Database.open("/path/to/database.kdb")
database.unlock("the master password")
puts database.entry("entry's title").password

Security Warning

No attempt is made to protect the memory used by this library; there may be something we can do with libgcrypt's secure-malloc functions, but right now your master password is unencrypted in ram that could possibly be paged to disk.

Build Status