Sha256: ff0da7eccfea7bb6450a4306809024377b4022c6f601ff0b9e3f35180a3cf65d

Contents?: true

Size: 618 Bytes

Versions: 25

Compression:

Stored size: 618 Bytes

Contents

# HTTPAuth holds a number of classes and constants to implement HTTP Authentication with. See Basic or Digest for
# details on how to implement authentication using this library.
#
# For more information see RFC 2617 (http://www.ietf.org/rfc/rfc2617.txt)
module HTTPAuth
  VERSION = '0.1'
  
  CREDENTIAL_HEADERS = %w{REDIRECT_X_HTTP_AUTHORIZATION X-HTTP-AUTHORIZATION X-HTTP_AUTHORIZATION HTTP_AUTHORIZATION}
  SUPPORTED_SCHEMES = { :basic => 'Basic', :digest => 'Digest' }
  SUPPORTED_QOPS = ['auth', 'auth-int']
  SUPPORTED_ALGORITHMS = ['MD5', 'MD5-sess']
  PREFERRED_QOP = 'auth'
  PREFERRED_ALGORITHM = 'MD5'
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
abiquo-etk-0.6.4 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.6.3 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.6.2 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.6.1 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.6.0 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.5.9 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.5.8 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.5.3 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.42 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.33 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.32 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.29 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.25 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.24 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.23 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.22 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.20 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.19 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.18 vendor/httpauth-0.1/lib/httpauth/constants.rb
abiquo-etk-0.4.17 vendor/httpauth-0.1/lib/httpauth/constants.rb