Class: ActiveSupport::KeyGenerator
- Defined in:
- lib/active_support/key_generator.rb
Overview
Key Generator
KeyGenerator is a simple wrapper around OpenSSL’s implementation of PBKDF2. It can be used to derive a number of keys for various purposes from a given secret. This lets Rails applications have a single secure secret, but avoid reusing that key in multiple incompatible contexts.
Class Method Summary collapse
Instance Method Summary collapse
-
#generate_key(salt, key_size = 64) ⇒ Object
Returns a derived key suitable for use.
-
#initialize(secret, options = {}) ⇒ KeyGenerator
constructor
A new instance of KeyGenerator.
-
#inspect ⇒ Object
:nodoc:.
Constructor Details
#initialize(secret, options = {}) ⇒ KeyGenerator
Returns a new instance of KeyGenerator.
28 29 30 31 32 33 34 35 36 |
# File 'lib/active_support/key_generator.rb', line 28 def initialize(secret, = {}) @secret = secret # The default iterations are higher than required for our key derivation uses # on the off chance someone uses this for password storage @iterations = [:iterations] || 2**16 # Also allow configuration here so people can use this to build a rotation # scheme when switching the digest class. @hash_digest_class = [:hash_digest_class] || self.class.hash_digest_class end |
Class Method Details
.hash_digest_class ⇒ Object
23 24 25 |
# File 'lib/active_support/key_generator.rb', line 23 def hash_digest_class @hash_digest_class ||= OpenSSL::Digest::SHA1 end |
.hash_digest_class=(klass) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/active_support/key_generator.rb', line 15 def hash_digest_class=(klass) if klass.kind_of?(Class) && klass < OpenSSL::Digest @hash_digest_class = klass else raise ArgumentError, "#{klass} is expected to be an OpenSSL::Digest subclass" end end |
Instance Method Details
#generate_key(salt, key_size = 64) ⇒ Object
Returns a derived key suitable for use. The default key_size
is chosen to be compatible with the default settings of ActiveSupport::MessageVerifier. i.e. OpenSSL::Digest::SHA1#block_length
41 42 43 |
# File 'lib/active_support/key_generator.rb', line 41 def generate_key(salt, key_size = 64) OpenSSL::PKCS5.pbkdf2_hmac(@secret, salt, @iterations, key_size, @hash_digest_class.new) end |
#inspect ⇒ Object
:nodoc:
45 46 47 |
# File 'lib/active_support/key_generator.rb', line 45 def inspect # :nodoc: "#<#{self.class.name}:#{'%#016x' % (object_id << 1)}>" end |