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
d15985d8
Kaydet (Commit)
d15985d8
authored
Kas 09, 2013
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21398 -- Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3.
Thanks arjan at anymore.nl for the report.
üst
af2dc4eb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
hashers.py
django/contrib/auth/hashers.py
+3
-1
1.6.1.txt
docs/releases/1.6.1.txt
+14
-0
index.txt
docs/releases/index.txt
+1
-0
No files found.
django/contrib/auth/hashers.py
Dosyayı görüntüle @
d15985d8
...
...
@@ -322,8 +322,10 @@ class BCryptSHA256PasswordHasher(BasePasswordHasher):
# Ensure that our data is a bytestring
data
=
force_bytes
(
data
)
# force_bytes() necessary for py-bcrypt compatibility
hashpw
=
force_bytes
(
bcrypt
.
hashpw
(
password
,
data
))
return
constant_time_compare
(
data
,
bcrypt
.
hashpw
(
password
,
data
)
)
return
constant_time_compare
(
data
,
hashpw
)
def
safe_summary
(
self
,
encoded
):
algorithm
,
empty
,
algostr
,
work_factor
,
data
=
encoded
.
split
(
'$'
,
4
)
...
...
docs/releases/1.6.1.txt
0 → 100644
Dosyayı görüntüle @
d15985d8
==========================
Django 1.6.1 release notes
==========================
*Under development*
This is Django 1.6.1, a bugfix release for Django 1.6.
...
Bug fixes
=========
* Fixed ``BCryptSHA256PasswordHasher`` with py-bcrypt and Python 3 (#21398).
docs/releases/index.txt
Dosyayı görüntüle @
d15985d8
...
...
@@ -30,6 +30,7 @@ Final releases
:maxdepth: 1
1.6
1.6.1
1.5 release
-----------
...
...
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