Skip to main content

A Django Authentication Backend for Passkeys

Project description

django-passkeys

PyPI version Downloads Downloads / Month build Coverage docs

Django Versions Python Versions

An extension to Django ModelBackend backend to support passkeys. Supports both django templates and REST API (Django REST Framework) with pluggable token backends (JWT, DRF Token, or Session).

Passkeys is an extension to Web Authentication API that will allow the user to login to a service using another device.

This app is a slimmed-down version of django-mfa2

Passkeys are now supported on

  • Apple Ecosystem (iPhone 16.0+, iPadOS 16.1, Mac OS X Ventura)
  • Chromium based browsers (on PC and Laptop) allows picking up credentials from Android and iPhone/iPadOS.
  • Android Credentials creation for ResidentKeys is currently live.

On May 3, 2023, Google allowed the use of Passkeys for the users to login, killing the password for enrolled users.

Special Features

django-passkeys supports the following features:

1. Conditional UI

Conditional UI is a way for the browser to prompt the user to use the passkey to login as shown. conditionalUI.png

2. WebAuthn immediate mediation for frictionless sign-in

Immediate Mediation is an extension to WebAuthn API that allows the browser to immediately prompt the user to use password/passkeys without the need of a login form. This is currently supported by Google Chrome 144+ and soon on Android devices.

You can watch demo presented by Google

Watch the video

Quick Start - Common Settings

pip install django-passkeys

Supports Django 2.2+, Python 3.7+

Usage

  1. In your settings.py add the application to your installed apps

    INSTALLED_APPS=(
    '......',
    'passkeys',
    '......')
    
  2. Collect Static Files

    python manage.py collectstatic
    
  3. Run migrate

     python manage.py migrate
    
  4. Add the following settings to your file

     AUTHENTICATION_BACKENDS = ['passkeys.backend.PasskeyModelBackend'] # Change your authentication backend
     FIDO_SERVER_ID="localhost"      # Server rp id for FIDO2, must match your domain
     FIDO_SERVER_NAME="TestApp"
     import passkeys
     KEY_ATTACHMENT = None # or passkeys.Attachment.CROSS_PLATFORM or  passkeys.Attachment.PLATFORM
    

    Notes

    • Starting v1.1, FIDO_SERVER_ID and/or FIDO_SERVER_NAME can be a callable to support multi-tenant web applications, the request is passed to the called function.
    • FIDO_SERVER_ID must match the domain you access the site from. For local development, use localhost and access via http://localhost:8000/ (not 127.0.0.1).

Detect if user is using passkeys

Once the backend is used, there will be a passkey key in request.session. If the user used a passkey then request.session['passkey']['passkey'] will be True and the key information will be there like this

{'passkey': True, 'name': 'Chrome', 'id': 2, 'platform': 'Chrome on Apple', 'cross_platform': False}

cross_platform: means that the user used a key from another platform so there is no key local to the device used to login e.g used an Android phone on Mac OS X or iPad. If the user didn't use a passkey then it will be set to False

{'passkey':False}

By this the basic installation of django-passkeys, your next step depends on whether you want to use the Django Template integration or the REST API (Django REST Framework) integration.

Choose Your Integration

django-passkeys supports two integration modes. Pick the one that fits your project:

Template-Based REST API (DRF)
Best for Server-rendered Django apps SPAs, mobile apps, headless APIs
Auth flow Session-based with Django forms Token-based (JWT, DRF Token, or Session)
Frontend Django templates with jQuery Any frontend (React, Vue, mobile, etc.)
Setup guide Template Setup DRF Setup

Both can coexist in the same project — you can use templates for your web app and the API for your mobile app.

Example Project

See the example app and Example.md for a working demo for templates, drf and immediate mediation.

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

Contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_passkeys-2.0rc3.tar.gz (29.9 kB view details)

Uploaded Source

File details

Details for the file django_passkeys-2.0rc3.tar.gz.

File metadata

  • Download URL: django_passkeys-2.0rc3.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for django_passkeys-2.0rc3.tar.gz
Algorithm Hash digest
SHA256 0eea3a5d516477182078eeceb0cca221e40b70fc829ecca3eed71dbfa2367caf
MD5 d0b17c36d963ecf254b0132fc9f4232d
BLAKE2b-256 5d0919300e11ffda6a7037d27c48abc0c602875023459bedd358157b16bf30d3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page