From 43f35f0cdc39357c48d6de4c3be05e395a2b9196 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 24 Mar 2015 15:10:54 +0000 Subject: [PATCH] Update documentation --- api-guide/authentication/index.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/api-guide/authentication/index.html b/api-guide/authentication/index.html index bf3048977..bfc504af4 100644 --- a/api-guide/authentication/index.html +++ b/api-guide/authentication/index.html @@ -429,10 +429,6 @@ Hawk HTTP Authentication -
  • - HTTP Signature Authentication -
  • -
  • Djoser
  • @@ -708,8 +704,6 @@ REST_FRAMEWORK = {

    JSON Web Token is a fairly new standard which can be used for token-based authentication. Unlike the built-in TokenAuthentication scheme, JWT Authentication doesn't need to use a database to validate a token. Blimp maintains the djangorestframework-jwt package which provides a JWT Authentication class as well as a mechanism for clients to obtain a JWT given the username and password.

    Hawk HTTP Authentication

    The HawkREST library builds on the Mohawk library to let you work with Hawk signed requests and responses in your API. Hawk lets two parties securely communicate with each other using messages signed by a shared key. It is based on HTTP MAC access authentication (which was based on parts of OAuth 1.0).

    -

    HTTP Signature Authentication

    -

    HTTP Signature (currently a IETF draft) provides a way to achieve origin authentication and message integrity for HTTP messages. Similar to Amazon's HTTP Signature scheme, used by many of its services, it permits stateless, per-request authentication. Elvio Toccalino maintains the djangorestframework-httpsignature package which provides an easy to use HTTP Signature Authentication mechanism.

    Djoser

    Djoser library provides a set of views to handle basic actions such as registration, login, logout, password reset and account activation. The package works with a custom user model and it uses token based authentication. This is a ready to use REST implementation of Django authentication system.

    django-rest-auth