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
24ef3e96
Kaydet (Commit)
24ef3e96
authored
Haz 30, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15225: improve error message when hmac is passed a wrong key type.
Patch by Marc Abramowitz.
üst
9c7817e9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
hmac.py
Lib/hmac.py
+1
-1
test_hmac.py
Lib/test/test_hmac.py
+12
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/hmac.py
Dosyayı görüntüle @
24ef3e96
...
...
@@ -35,7 +35,7 @@ class HMAC:
"""
if
not
isinstance
(
key
,
bytes
):
raise
TypeError
(
"expected bytes, but got
%
r"
%
type
(
key
)
.
__name__
)
raise
TypeError
(
"
key:
expected bytes, but got
%
r"
%
type
(
key
)
.
__name__
)
if
digestmod
is
None
:
import
hashlib
...
...
Lib/test/test_hmac.py
Dosyayı görüntüle @
24ef3e96
...
...
@@ -234,6 +234,18 @@ class ConstructorTestCase(unittest.TestCase):
except
:
self
.
fail
(
"Standard constructor call raised exception."
)
def
test_with_str_key
(
self
):
# Pass a key of type str, which is an error, because it expects a key
# of type bytes
with
self
.
assertRaises
(
TypeError
):
h
=
hmac
.
HMAC
(
"key"
)
def
test_dot_new_with_str_key
(
self
):
# Pass a key of type str, which is an error, because it expects a key
# of type bytes
with
self
.
assertRaises
(
TypeError
):
h
=
hmac
.
new
(
"key"
)
def
test_withtext
(
self
):
# Constructor call with text.
try
:
...
...
Misc/ACKS
Dosyayı görüntüle @
24ef3e96
...
...
@@ -13,6 +13,7 @@ and the list is in rough alphabetical order by last names.
Rajiv Abraham
David Abrahams
Marc Abramowitz
Ron Adam
Ali Afshar
Jim Ahlstrom
...
...
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