Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
2c3f2f19
Kaydet (Commit)
2c3f2f19
authored
May 19, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17812: Fixed quadratic complexity of base64.b32encode().
üst
08231a9c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
base64.py
Lib/base64.py
+6
-6
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/base64.py
Dosyayı görüntüle @
2c3f2f19
...
...
@@ -166,7 +166,7 @@ def b32encode(s):
if
leftover
:
s
=
s
+
bytes
(
5
-
leftover
)
# Don't use += !
quanta
+=
1
encoded
=
byte
s
()
encoded
=
byte
array
()
for
i
in
range
(
quanta
):
# c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
# code is to process the 40 bits in units of 5 bits. So we take the 1
...
...
@@ -187,14 +187,14 @@ def b32encode(s):
])
# Adjust for any leftover partial quanta
if
leftover
==
1
:
return
encoded
[:
-
6
]
+
b
'======'
encoded
[
-
6
:]
=
b
'======'
elif
leftover
==
2
:
return
encoded
[:
-
4
]
+
b
'===='
encoded
[
-
4
:]
=
b
'===='
elif
leftover
==
3
:
return
encoded
[:
-
3
]
+
b
'==='
encoded
[
-
3
:]
=
b
'==='
elif
leftover
==
4
:
return
encoded
[:
-
1
]
+
b
'='
return
encoded
encoded
[
-
1
:]
=
b
'='
return
bytes
(
encoded
)
def
b32decode
(
s
,
casefold
=
False
,
map01
=
None
):
...
...
Misc/NEWS
Dosyayı görüntüle @
2c3f2f19
...
...
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
- Issue #17812: Fixed quadratic complexity of base64.b32encode().
- Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of
service using certificates with many wildcards (CVE-2013-2099).
...
...
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