Sha256: c7d204cc610c95a72ad2896eec6ef9a6976bd3db0be0e5e653075f71273a056b
Contents?: true
Size: 1.91 KB
Versions: 3
Compression:
Stored size: 1.91 KB
Contents
# KeyControl KeyControl is a Ruby wrapper for the `keyctl` commands available on most Linux systems. It provides a Hash-like API for storing and retrieving data using the kernel's built-in key management facilities. ## Installation Add this line to your application's Gemfile: gem 'key_control' And then execute: $ bundle Or install it yourself as: $ gem install key_control ## Usage ### Availability You can check if `KeyControl` is supported on your system with `KeyControl.available?`. This will attempt to locate a libkeyutils shared library on the system, and return a boolean based on detection. ### Key Storage/Retrieval The basic API consists of a single class, `KeyControl::KeyRing`. The `KeyRing` initializer takes a single argument, the ID of the keyring you wish to store your data in. There are several (very useful) [special keyrings](http://manpages.ubuntu.com/manpages/oneiric/man1/keyctl.1.html), which are available for use as constants in the `KeyControl` module. As an example, we'll create a basic accessor for the session keyring (useful for sharing information among several grouped processes): ```ruby keyring = KeyControl::KeyRing.new(KeyControl::SESSION) ``` Once you have your keyring instance, just treat it like you would a hash: ```ruby keyring["mykey"] = "my passphrase" keyring["mykey"] # => "my passphrase" ``` That's it! The power of this gem comes from the ability to use your kernel's built-in key management mechanism to share information between Ruby processes without exposing your data to the outside world. ## Future Enhancements - Non-default keyring management (creation, specifically) ## Contributing 1. Fork it ( http://github.com/<my-github-username>/key_control/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
key_control-0.0.5 | README.md |
key_control-0.0.4 | README.md |
key_control-0.0.3 | README.md |