Metadata-Version: 2.1
Name: django-fido
Version: 0.3
Summary: Django application for FIDO protocol U2F
Home-page: https://github.com/ziima/django-fido
Author: Vlastimil Zíma
Author-email: vlastimil.zima@gmail.com
License: UNKNOWN
Description: # django-fido #
        
        [![Build Status](https://travis-ci.org/ziima/django-fido.svg?branch=master)](https://travis-ci.org/ziima/django-fido)
        [![codecov](https://codecov.io/gh/ziima/django-fido/branch/master/graph/badge.svg)](https://codecov.io/gh/ziima/django-fido)
        
        > Django application for FIDO protocol U2F
        
        Django-fido provides basic components for authentication using FIDO U2F - model to store user's U2F-related data and basic views.
        
        ## Table of Contents ##
        - [Dependencies](#dependencies)
        - [Configuration](#configuration)
        - [Changes](#changes)
        - [Testing](#testing)
        - [License](#license)
        
        ## Dependencies ##
         * Python 2.7, 3.5 and 3.6
         * Django >= 1.11
         * python-u2flib-server
         * python-six
        
        ## Configuration ##
        
        1. Add `django_fido` to `INSTALLED_APPS`.
        2. Add `django_fido.backends.U2fAuthenticationBackend` to `AUTHENTICATION_BACKENDS`.
        3. Link django-fido URLs into your `urls.py`:
        
               urlpatterns += [
                  url(r'', include('django_fido.urls')),
               ]
        
        ## Changes ##
        See [changelog](https://github.com/ziima/django-fido/blob/master/CHANGELOG.md).
        
        ## Testing ##
        Use `tox` to run tests
        
            tox
        
        ## License ##
        
        See [LICENSE](https://github.com/ziima/django-fido/blob/master/LICENSE).
        
        
        # Changelog #
        
        ## 0.3 ##
         * Store attestation certificate in database #6
         * Install package data #7
        
        ## 0.2 ##
         * Accept any arguments in `BaseU2fRequestView.get`
         * Add czech translations
         * Fix links in README
        
        ## 0.1 ##
         * Initial version
        
Keywords: django,fido,u2f
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7
Description-Content-Type: text/markdown
Provides-Extra: quality
Provides-Extra: test
