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
a6386ce1
Kaydet (Commit)
a6386ce1
authored
Mar 24, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added Jeremy's test code for the sha module.
üst
29d2acc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
test_sha
Lib/test/output/test_sha
+4
-0
test_sha.py
Lib/test/test_sha.py
+28
-0
No files found.
Lib/test/output/test_sha
0 → 100644
Dosyayı görüntüle @
a6386ce1
test_sha
test 0 ok
test 1 ok
test 2 ok
Lib/test/test_sha.py
0 → 100644
Dosyayı görüntüle @
a6386ce1
# Testing sha module (NIST's Secure Hash Algorithm)
import
sha
# use the three examples from Federal Information Processing Standards
# Publication 180-1, Secure Hash Standard, 1995 April 17
# http://www.itl.nist.gov/div897/pubs/fip180-1.htm
s
=
[
''
]
*
3
d
=
[
''
]
*
3
s
[
0
]
=
'abc'
d
[
0
]
=
'a9993e364706816aba3e25717850c26c9cd0d89d'
s
[
1
]
=
'abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq'
d
[
1
]
=
'84983e441c3bd26ebaae4aa1f95129e5e54670f1'
s
[
2
]
=
'a'
*
1000000
d
[
2
]
=
'34aa973cd4c4daa4f61eeb2bdbad27316534016f'
for
i
in
range
(
3
):
test
=
sha
.
new
(
s
[
i
])
.
hexdigest
()
if
test
==
d
[
i
]:
print
"test
%
d ok"
%
i
else
:
print
"test
%
d failed"
%
i
print
"expected"
,
d
[
i
]
print
"computed"
,
test
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