changed: #documentation
authorStefan Vogel <sv@exept.de>
Tue, 10 May 2011 16:27:15 +0200
changeset 2564 0c8cd34c7176
parent 2563 d206deb6d271
child 2565 a4e6a6d3141d
changed: #documentation
CRC32Stream.st
--- a/CRC32Stream.st	Tue May 10 10:31:39 2011 +0200
+++ b/CRC32Stream.st	Tue May 10 16:27:15 2011 +0200
@@ -40,6 +40,7 @@
     The CRC polynomial employed is
 
         x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1
+        (or 16r82608EDB)
 
     Use CRC to protect against communication errors;
     do NOT use CRC for cryptography - use SHA1Stream or MD5Stream instead.
@@ -317,11 +318,11 @@
 !CRC32Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.12 2010-02-01 11:28:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.13 2011-05-10 14:27:15 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.12 2010-02-01 11:28:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CRC32Stream.st,v 1.13 2011-05-10 14:27:15 stefan Exp $'
 ! !
 
 CRC32Stream initialize!