Sha256: bc9f5a6926d687a800a69621cb65e36f03589e9e1ec4513d90ce5594fae578fc
Contents?: true
Size: 798 Bytes
Versions: 1
Compression:
Stored size: 798 Bytes
Contents
# Keepassx This is fork of Tony Pitluga's Ruby API for [keepassx](http://www.keepassx.org/) with read-write support. ## Installation ``` gem install ruby-keepassx ``` or if you use bundler ```ruby gem 'ruby-keepassx' ``` ## Usage ```ruby 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](https://travis-ci.org/tioteath/ruby-keepassx.svg?branch=master)](https://travis-ci.org/tioteath/ruby-keepassx)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-keepassx-0.2.2beta1 | README.md |