Sha256: ad129a4b32a19a05c46ecfcf9a8e20b11f9e51a7108b00697f132995911fb484
Contents?: true
Size: 376 Bytes
Versions: 20
Compression:
Stored size: 376 Bytes
Contents
# frozen_string_literal: true require "httpx/base64" module HTTPX module Plugins module Authentication class Basic def initialize(user, password, **) @user = user @password = password end def authenticate(*) "Basic #{Base64.strict_encode64("#{@user}:#{@password}")}" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems