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.4.4 lib/graphql/query/fingerprint.rb
graphql-2.4.3 lib/graphql/query/fingerprint.rb
graphql-2.4.2 lib/graphql/query/fingerprint.rb
graphql-2.4.1 lib/graphql/query/fingerprint.rb
graphql-2.4.0 lib/graphql/query/fingerprint.rb
graphql-2.3.20 lib/graphql/query/fingerprint.rb
graphql-2.3.19 lib/graphql/query/fingerprint.rb
graphql-2.3.18 lib/graphql/query/fingerprint.rb
graphql-2.3.17 lib/graphql/query/fingerprint.rb
graphql-2.3.16 lib/graphql/query/fingerprint.rb
graphql-2.3.15 lib/graphql/query/fingerprint.rb
graphql-2.3.14 lib/graphql/query/fingerprint.rb
graphql-2.3.13 lib/graphql/query/fingerprint.rb
graphql-2.3.12 lib/graphql/query/fingerprint.rb
graphql-2.3.11 lib/graphql/query/fingerprint.rb
graphql-2.3.10 lib/graphql/query/fingerprint.rb
graphql-2.2.16 lib/graphql/query/fingerprint.rb
graphql-2.1.13 lib/graphql/query/fingerprint.rb
graphql-2.3.9 lib/graphql/query/fingerprint.rb
graphql-2.3.8 lib/graphql/query/fingerprint.rb