Sha256: 3c09826050930f0ce15409465719269ed43abcec74d9f50c498394144c750641
Contents?: true
Size: 668 Bytes
Versions: 2
Compression:
Stored size: 668 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.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-keepassx-0.2.0beta11 | README.md |
ruby-keepassx-0.2.0 | README.md |