Sha256: dddc9ad7078e3a92096c0f3bda08512de4d1bc798161c0d312b83b888a376107

Contents?: true

Size: 736 Bytes

Versions: 143

Compression:

Stored size: 736 Bytes

Contents

# frozen_string_literal: true

require 'digest/sha2'

module GraphQL
  class Query
    # @api private
    # @see Query#query_fingerprint
    # @see Query#variables_fingerprint
    # @see Query#fingerprint
    module Fingerprint
      # Make an obfuscated hash of the given string (either a query string or variables JSON)
      # @param string [String]
      # @return [String] A normalized, opaque hash
      def self.generate(input_str)
        # Implemented to be:
        # - Short (and uniform) length
        # - Stable
        # - Irreversibly Opaque (don't want to leak variable values)
        # - URL-friendly
        bytes = Digest::SHA256.digest(input_str)
        Base64.urlsafe_encode64(bytes)
      end
    end
  end
end

Version data entries

143 entries across 143 versions & 2 rubygems

Version Path
graphql-2.0.0 lib/graphql/query/fingerprint.rb
graphql-1.13.9 lib/graphql/query/fingerprint.rb
graphql-1.12.24 lib/graphql/query/fingerprint.rb
graphql-1.13.8 lib/graphql/query/fingerprint.rb
graphql-1.13.7 lib/graphql/query/fingerprint.rb
graphql-1.13.6 lib/graphql/query/fingerprint.rb
graphql-1.13.5 lib/graphql/query/fingerprint.rb
graphql-1.13.4 lib/graphql/query/fingerprint.rb
graphql-1.13.3 lib/graphql/query/fingerprint.rb
graphql-1.12.23 lib/graphql/query/fingerprint.rb
graphql-1.13.2 lib/graphql/query/fingerprint.rb
graphql-1.13.1 lib/graphql/query/fingerprint.rb
graphql-1.12.22 lib/graphql/query/fingerprint.rb
graphql-1.13.0 lib/graphql/query/fingerprint.rb
graphql-1.12.21 lib/graphql/query/fingerprint.rb
graphql-1.12.20 lib/graphql/query/fingerprint.rb
graphql-1.12.19 lib/graphql/query/fingerprint.rb
graphql-1.11.10 lib/graphql/query/fingerprint.rb
graphql-1.12.18 lib/graphql/query/fingerprint.rb
graphql-1.11.9 lib/graphql/query/fingerprint.rb