#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 02 Mar 2018 18:20:32 +0100
changeset 22564 097f48409054
parent 22563 7ab243018a90
child 22565 4dab1e4522a8
#DOCUMENTATION by cg class: HashStream added: #hashMessage: SQUEAK compatibility
HashStream.st
--- a/HashStream.st	Fri Mar 02 17:09:11 2018 +0100
+++ b/HashStream.st	Fri Mar 02 18:20:32 2018 +0100
@@ -275,6 +275,12 @@
     "SQUEAK: answer the digest of bytes"
 
     ^ self hashValueOf:bytes
+!
+
+hashMessage:bytes
+    "SQUEAK: answer the digest of bytes"
+
+    ^ self hashValueOf:bytes
 ! !
 
 !HashStream methodsFor:'accessing'!