Sha256: 3df3ef86298c54d29537de31fa864f5721ae6019576627b54471b4b5b3e60dfa

Contents?: true

Size: 1.48 KB

Versions: 51

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

require "concurrent/map"
require "openssl"

module ActiveSupport
  # 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 KeyGenerator
    def initialize(secret, options = {})
      @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 = options[:iterations] || 2**16
    end

    # 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
    def generate_key(salt, key_size = 64)
      OpenSSL::PKCS5.pbkdf2_hmac_sha1(@secret, salt, @iterations, key_size)
    end
  end

  # CachingKeyGenerator is a wrapper around KeyGenerator which allows users to avoid
  # re-executing the key generation process when it's called using the same salt and
  # key_size.
  class CachingKeyGenerator
    def initialize(key_generator)
      @key_generator = key_generator
      @cache_keys = Concurrent::Map.new
    end

    # Returns a derived key suitable for use.
    def generate_key(*args)
      @cache_keys[args.join] ||= @key_generator.generate_key(*args)
    end
  end
end

Version data entries

51 entries across 49 versions & 7 rubygems

Version Path
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/key_generator.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/key_generator.rb
activesupport-6.0.6.1 lib/active_support/key_generator.rb
activesupport-6.0.6 lib/active_support/key_generator.rb
activesupport-6.0.5.1 lib/active_support/key_generator.rb
activesupport-6.0.5 lib/active_support/key_generator.rb
activesupport-6.0.4.8 lib/active_support/key_generator.rb
activesupport-6.0.4.7 lib/active_support/key_generator.rb
activesupport-6.0.4.6 lib/active_support/key_generator.rb
activesupport-6.0.4.5 lib/active_support/key_generator.rb
activesupport-6.0.4.4 lib/active_support/key_generator.rb
activesupport-6.0.4.3 lib/active_support/key_generator.rb
activesupport-6.0.4.2 lib/active_support/key_generator.rb
activesupport-6.0.4.1 lib/active_support/key_generator.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.4/lib/active_support/key_generator.rb
activesupport-6.0.4 lib/active_support/key_generator.rb
activesupport-6.0.3.7 lib/active_support/key_generator.rb
activesupport-6.0.3.6 lib/active_support/key_generator.rb
activesupport-6.0.3.5 lib/active_support/key_generator.rb
activesupport-6.0.3.4 lib/active_support/key_generator.rb