class Aws::Plugins::HttpChecksum::Handler

def call(context)

def call(context)
  if checksum_required?(context) &&
     !context[:checksum_algorithms] # skip in favor of flexible checksum
    body = context.http_request.body
    context.http_request.headers['Content-Md5'] ||= md5(body)
  end
  @handler.call(context)
end