CRC32Stream.st
changeset 2572 4d6f4419b6b5
parent 2571 12d5e280eea1
child 2702 bbfd7a7031a6
--- a/CRC32Stream.st	Fri May 13 17:23:07 2011 +0200
+++ b/CRC32Stream.st	Fri May 13 17:35:54 2011 +0200
@@ -172,7 +172,7 @@
     "
 !
 
-newCrc32C
+newCrc32c
     "return an instance of the Castagnoli CRC-32
         x32 + x28 + x27 + x26 + x25 + x23 + x22 + x20 + x19 + x18 + x14 + x13 + x11 + x10 + x9 + x8 + x6 + 1 
      (used in iSCSI & SCTP, G.hn payload, SSE4.2)"
@@ -180,7 +180,7 @@
     ^ self basicNew generatorPolynom:16r82F63B78
 
     "
-       self assert:((self newCrc32C)
+       self assert:((self newCrc32c)
                                 nextPut:'123456789';
                                 hashValue)    = 16rE3069283
     "
@@ -379,11 +379,11 @@
 !CRC32Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.16 2011-05-13 15:23:07 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.17 2011-05-13 15:35:54 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.16 2011-05-13 15:23:07 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.17 2011-05-13 15:35:54 stefan Exp $'
 ! !
 
 CRC32Stream initialize!