[pypy-svn] r9989 - pypy/dist/pypy/lib/test2
hpk at codespeak.net
hpk at codespeak.net
Mon Mar 21 16:34:40 CET 2005
Author: hpk
Date: Mon Mar 21 16:34:40 2005
New Revision: 9989
Removed:
pypy/dist/pypy/lib/test2/test_sha.py
Log:
remove hacked version
Deleted: /pypy/dist/pypy/lib/test2/test_sha.py
==============================================================================
--- /pypy/dist/pypy/lib/test2/test_sha.py Mon Mar 21 16:34:40 2005
+++ (empty file)
@@ -1,25 +0,0 @@
-# Testing sha module (NIST's Secure Hash Algorithm)
-
-# 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
-
-import autopath
-from pypy.appspace import sha
-
-class TestSHA:
- def check(self, data, digest):
- computed = sha.new(data).hexdigest()
- assert computed == digest
-
- def test_case_1(self):
- self.check("abc",
- "a9993e364706816aba3e25717850c26c9cd0d89d")
-
- def test_case_2(self):
- self.check("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
- "84983e441c3bd26ebaae4aa1f95129e5e54670f1")
-
- def disabled_too_slow_test_case_3(self):
- self.check("a" * 1000000,
- "34aa973cd4c4daa4f61eeb2bdbad27316534016f")
More information about the Pypy-commit
mailing list