Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
464b98b1
Kaydet (Commit)
464b98b1
authored
Nis 17, 2014
tarafından
Alex Gaynor
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Include an 'extra_requires' for bcrypt
üst
47927eb7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
passwords.txt
docs/topics/auth/passwords.txt
+3
-3
setup.py
setup.py
+3
-0
No files found.
docs/topics/auth/passwords.txt
Dosyayı görüntüle @
464b98b1
...
...
@@ -76,9 +76,9 @@ use it Django supports bcrypt with minimal effort.
To use Bcrypt as your default storage algorithm, do the following:
1. Install the `bcrypt library`_
(probably by running ``sudo
pip install
bcrypt``, or downloading the library and installing it with ``python
setup.py install``).
1. Install the `bcrypt library`_
. This can be done by running ``
pip install
django[bcrypt]``, or by downloading the library and installing it with
``python
setup.py install``).
2. Modify :setting:`PASSWORD_HASHERS` to list ``BCryptSHA256PasswordHasher``
first. That is, in your settings file, you'd put::
...
...
setup.py
Dosyayı görüntüle @
464b98b1
...
...
@@ -47,6 +47,9 @@ setup(
entry_points
=
{
'console_scripts'
:
[
'django-admin = django.core.management:execute_from_command_line'
,
]},
extras_require
=
{
"bcrypt"
:
[
"bcrypt"
],
},
zip_safe
=
False
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment