django-webauth:Django中使用Web身份验证API(WebAuthn)的两因素身份验证

时间:2021-04-05 11:21:40
【文件属性】:
文件名称:django-webauth:Django中使用Web身份验证API(WebAuthn)的两因素身份验证
文件大小:30KB
文件格式:ZIP
更新时间:2021-04-05 11:21:40
Python 网络认证 Django中使用Web身份验证API(WebAuthn)的两因素身份验证。 快速开始 将“ webauth”添加到您的INSTALLED_APPS设置中,如下所示: INSTALLED_APPS = [ ... 'webauth', ] 像这样在您的项目urls.py中包含webauth URLconf: path('webauth/', include('webauth.urls')), 将webauth.backends.WebAuthnBackend添加到AUTHENTICATION_BACKENDS设置中: AUTHENTICATION_BACKENDS = [ 'django.contrib.auth.backends.ModelBackend', 'webauth.backends.WebAuthnBackend', ] 将we
【文件预览】:
django-webauth-main
----setup.py(39B)
----.gitignore(72B)
----pyproject.toml(90B)
----MANIFEST.in(133B)
----LICENSE(34KB)
----setup.cfg(1020B)
----README.rst(1KB)
----webauth()
--------templates()
--------urls.py(426B)
--------__init__.py(29B)
--------views.py(6KB)
--------backends.py(2KB)
--------static()
--------models.py(670B)
--------apps.py(89B)
--------admin.py(354B)
--------mixins.py(1KB)
--------migrations()
--------forms.py(3KB)
--------tests.py(60B)

网友评论