Sha256: 821808d640bc9c90aa8b84a24f31a330d4de5f639a3dafea0f0c910879a980ae
Contents?: true
Size: 799 Bytes
Versions: 1
Compression:
Stored size: 799 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.1 | README.md |