.. _ref-authentication-backends: ========================================== Built-in authentication backends reference ========================================== :revision-up-to: 11321 (1.1) unfinished .. module:: django.contrib.auth.backends :synopsis: Django's built-in authentication backend classes. This document details the authentication backends that come with Django. For information on how how to use them and how to write your own authentication backends, see the :ref:`Other authentication sources section ` of the :ref:`User authentication guide `. Available authentication backends ================================= The following backends are available in :mod:`django.contrib.auth.backends`: .. class:: ModelBackend This is the default authentication backend used by Django. It authenticates using usernames and passwords stored in the :class:`~django.contrib.auth.models.User` model. .. class:: RemoteUserBackend .. versionadded:: 1.1 Use this backend to take advantage of external-to-Django-handled authentication. It authenticates using usernames passed in :attr:`request.META['REMOTE_USER'] `. See the :ref:`Authenticating against REMOTE_USER ` documentation.