CRC32Stream.st
changeset 2704 9027649ca910
parent 2703 00e8619a241b
child 2705 47bcf29473ad
--- a/CRC32Stream.st	Mon Jan 09 22:30:11 2012 +0100
+++ b/CRC32Stream.st	Tue Jan 10 23:45:22 2012 +0100
@@ -181,39 +181,6 @@
     "
 ! !
 
-!CRC32Stream class methodsFor:'testing'!
-
-testVector
-    "/ obsolete - moved to TestHashAlgorithms unit test.
-    ^ #(
-          ('' 0)
-
-          ('123456789' 16rCBF43926)
-
-          (#[16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 
-             16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF
-             16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF
-             16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF]
-           2362461299)
-
-          (#[0 0 0 0 0 0 0 0 0 0 
-             0 0 0 0 0 0 0 0 0 0
-             0 0 0 0 0 0 0 0 0 0
-             0 0 0 0 0 0 0 0 0 0]
-           3924573617)
-
-          (#[0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
-             20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39]
-           228994620 )
-       )
-
-    "
-     self test
-    "
-
-    "Modified (comment): / 09-01-2012 / 21:49:57 / cg"
-! !
-
 !CRC32Stream methodsFor:'accessing'!
 
 generatorPolynom
@@ -352,11 +319,11 @@
 !CRC32Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.19 2012-01-09 21:30:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.20 2012-01-10 22:45:22 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.19 2012-01-09 21:30:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.20 2012-01-10 22:45:22 cg Exp $'
 ! !
 
 CRC32Stream initialize!