changed: #documentation
authorClaus Gittinger <cg@exept.de>
Sat, 10 Oct 2009 22:48:35 +0200
changeset 12205 89063d394d63
parent 12204 e95118ee583f
child 12206 433e092f9205
changed: #documentation
SHA1Stream.st
--- a/SHA1Stream.st	Sat Oct 10 22:47:02 2009 +0200
+++ b/SHA1Stream.st	Sat Oct 10 22:48:35 2009 +0200
@@ -308,22 +308,24 @@
     This may be used as checksum
     or for generating cryptographic signatures.
 
-    performance: roughly 9580 Kb/s on a 400Mhz PIII
-			 3970 Kb/s on a 300Mhz Sparc
+    performance: roughly 
+           47400 Kb/s on a 2Ghz Duo
+            9580 Kb/s on a 400Mhz PIII
+            3970 Kb/s on a 300Mhz Sparc
 
     [author:]
-	Stefan Vogel
+        Stefan Vogel
 
     [see also:]
-	MD5Stream
+        MD5Stream
 
     [class variables:]
-	HashSize        size of returned hash value
-	ContextSize     (implementation) size of hash context
+        HashSize        size of returned hash value
+        ContextSize     (implementation) size of hash context
 
     [instance variables:]
-	hashContext     (implementation)
-			internal buffer for computation of the hash value
+        hashContext     (implementation)
+                        internal buffer for computation of the hash value
 "
 !
 
@@ -678,7 +680,11 @@
 !SHA1Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.13 2007-11-08 14:30:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.14 2009-10-10 20:48:35 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic/SHA1Stream.st,v 1.14 2009-10-10 20:48:35 cg Exp $'
 ! !
 
 SHA1Stream initialize!