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-1.13.16 lib/graphql/query/fingerprint.rb
graphql-2.0.13 lib/graphql/query/fingerprint.rb
graphql-2.0.12 lib/graphql/query/fingerprint.rb
graphql-1.13.15 lib/graphql/query/fingerprint.rb
graphql-2.0.11 lib/graphql/query/fingerprint.rb
graphql-1.13.14 lib/graphql/query/fingerprint.rb
graphql-1.13.13 lib/graphql/query/fingerprint.rb
graphql-2.0.9 lib/graphql/query/fingerprint.rb
graphql-2.0.8 lib/graphql/query/fingerprint.rb
graphql-2.0.7 lib/graphql/query/fingerprint.rb
graphql_cody-1.13.0 lib/graphql/query/fingerprint.rb
graphql-1.13.12 lib/graphql/query/fingerprint.rb
graphql-2.0.6 lib/graphql/query/fingerprint.rb
graphql-2.0.5 lib/graphql/query/fingerprint.rb
graphql-2.0.4 lib/graphql/query/fingerprint.rb
graphql-2.0.3 lib/graphql/query/fingerprint.rb
graphql-1.13.11 lib/graphql/query/fingerprint.rb
graphql-2.0.2 lib/graphql/query/fingerprint.rb
graphql-2.0.1 lib/graphql/query/fingerprint.rb
graphql-1.13.10 lib/graphql/query/fingerprint.rb