Sha256: 0c107898c23ec03b65ca5dccfa0622684c72acf1a82b9f731a0c2f9f291cceca
Contents?: true
Size: 1.85 KB
Versions: 2
Compression:
Stored size: 1.85 KB
Contents
# Keystores This gem provides ruby implementations of different key stores. This was primarily created to provide the ability to use many of the good Java key stores from ruby. This gem adds the key stores to the OpenSSL module structure, since that is where the `OpenSSL::PKCS12` keystore lives. ## Installation Add this line to your application's Gemfile: ```ruby gem 'keystores' ``` And then execute: $ bundle Or install it yourself as: $ gem install keystores ## Usage The API for this gem is modeled after the Java `KeyStore` class. All of the `KeyStore` implementations provided by this gem conform to the `Keystores::Keystore` interface. The certificate and key objects that these keystores return and expect are `OpenSSL::X509::Certificate` and `OpenSSL::PKey` objects, respectively. ### Supported Key Store types #### Java Key Store (jks) format [Detailed documentation](JAVA_KEY_STORE_README.md) ##### Reading This gem supports reading trusted certificate entries and private key entries. It can read and decrypt RSA, DSA, and EC keys. Example usage: ``` require 'keystores' keystore = OpenSSL::JKS.new # Load can take any IO object, or a path to a file key_store_password = 'keystores' keystore.load('/tmp/keystore.jks', key_store_password) certificate = keystore.get_certificate('my_certificate') key = keystore.get_key('my_key', key_store_password) certificate.check_private_key(key) certificate_chain = keystore.get_certificate_chain('my_key') ``` ##### Writing This gem supports writing trusted certificate entries and private key entries. It currently supports writing DSA, RSA, and EC private key entries. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/rylarson/keystores. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
keystores-0.3.0 | README.md |
keystores-0.2.0 | README.md |