SHA1Stream.st
branchjv
changeset 21246 958aa6e341d4
parent 19412 1e842c25e51e
parent 21152 4f99d04d9ae4
--- a/SHA1Stream.st	Tue Dec 20 10:11:20 2016 +0000
+++ b/SHA1Stream.st	Thu Dec 22 23:00:47 2016 +0000
@@ -312,29 +312,30 @@
     This may be used as checksum or for generating cryptographic signatures.
 
     Notice (2005):
-	Be aware that SHA-1 is considered broken and may not be appropriate in some applications.
-	Especially it should no longer be used for security stuff.
+        Be aware that SHA-1 is considered broken and may not be appropriate in some applications.
+        Especially it should no longer be used for security stuff.
 
     performance: roughly
-	  120400 Kb/s on a 2.5Ghz 64X2 Athlon 4800+ (64bit)
-	   47400 Kb/s on a 2Ghz Duo (old measure)
-	    9580 Kb/s on a 400Mhz PIII
-	    3970 Kb/s on a 300Mhz Sparc
+          150 Mb/s on a 2007 MAC Powerbook (2.6Ghz I7-Duo)
+          120400 Kb/s on a 2.5Ghz 64X2 Athlon 4800+ (64bit)
+           47400 Kb/s on a 2Ghz Duo (old measure)
+            9580 Kb/s on a 400Mhz PIII
+            3970 Kb/s on a 300Mhz Sparc
 
     [author:]
-	Stefan Vogel
+        Stefan Vogel
 
     [see also:]
-	MD5Stream
-	SHA256Stream SHA512Stream (in libcrypt)
+        MD5Stream
+        SHA256Stream SHA512Stream (in libcrypt)
 
     [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
 "
 !