Sha256: 434f96318d05f0f671cac6deb7b50c4edae939e2cdf226c3b9e2fa9a22e4fc92

Contents?: true

Size: 1.25 KB

Versions: 122

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

module ActiveSupport
  module SecurityUtils
    # Constant time string comparison, for fixed length strings.
    #
    # The values compared should be of fixed length, such as strings
    # that have already been processed by HMAC. Raises in case of length mismatch.

    if defined?(OpenSSL.fixed_length_secure_compare)
      def fixed_length_secure_compare(a, b)
        OpenSSL.fixed_length_secure_compare(a, b)
      end
    else
      def fixed_length_secure_compare(a, b)
        raise ArgumentError, "string length mismatch." unless a.bytesize == b.bytesize

        l = a.unpack "C#{a.bytesize}"

        res = 0
        b.each_byte { |byte| res |= byte ^ l.shift }
        res == 0
      end
    end
    module_function :fixed_length_secure_compare

    # Secure string comparison for strings of variable length.
    #
    # While a timing attack would not be able to discern the content of
    # a secret compared via secure_compare, it is possible to determine
    # the secret length. This should be considered when using secure_compare
    # to compare weak, short secrets to user input.
    def secure_compare(a, b)
      a.bytesize == b.bytesize && fixed_length_secure_compare(a, b)
    end
    module_function :secure_compare
  end
end

Version data entries

122 entries across 116 versions & 16 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/security_utils.rb
activesupport-8.0.1 lib/active_support/security_utils.rb
activesupport-8.0.0.1 lib/active_support/security_utils.rb
activesupport-7.2.2.1 lib/active_support/security_utils.rb
activesupport-7.1.5.1 lib/active_support/security_utils.rb
activesupport-7.0.8.7 lib/active_support/security_utils.rb
activesupport-8.0.0 lib/active_support/security_utils.rb
activesupport-7.2.2 lib/active_support/security_utils.rb
activesupport-7.1.5 lib/active_support/security_utils.rb
activesupport-8.0.0.rc2 lib/active_support/security_utils.rb
activesupport-7.2.1.2 lib/active_support/security_utils.rb
activesupport-7.1.4.2 lib/active_support/security_utils.rb
activesupport-7.0.8.6 lib/active_support/security_utils.rb
activesupport-6.1.7.10 lib/active_support/security_utils.rb
activesupport-8.0.0.rc1 lib/active_support/security_utils.rb
activesupport-6.1.7.9 lib/active_support/security_utils.rb
activesupport-7.2.1.1 lib/active_support/security_utils.rb
activesupport-7.1.4.1 lib/active_support/security_utils.rb
activesupport-7.0.8.5 lib/active_support/security_utils.rb
activesupport-8.0.0.beta1 lib/active_support/security_utils.rb