MD5Stream.st
changeset 8913 b9498d27a554
parent 7197 a68adb223592
child 10782 0eb9a61f1e32
equal deleted inserted replaced
8912:3d1947a79cf3 8913:b9498d27a554
   177 
   177 
   178 initialize
   178 initialize
   179     |ctxSize|
   179     |ctxSize|
   180 
   180 
   181 %{
   181 %{
   182     ctxSize = __MKSMALLINT(sizeof(MD5_CTX));
   182     ctxSize = __mkSmallInteger(sizeof(MD5_CTX));
   183 %}.
   183 %}.
   184     ContextSize := ctxSize.
   184     ContextSize := ctxSize.
   185     HashSize := 16.
   185     HashSize := 16.
   186 
   186 
   187     "
   187     "
   437 ! !
   437 ! !
   438 
   438 
   439 !MD5Stream class methodsFor:'documentation'!
   439 !MD5Stream class methodsFor:'documentation'!
   440 
   440 
   441 version
   441 version
   442     ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.4 2003-04-10 23:34:56 cg Exp $'
   442     ^ '$Header: /cvs/stx/stx/libbasic/MD5Stream.st,v 1.5 2005-07-08 17:15:01 cg Exp $'
   443 ! !
   443 ! !
   444 
   444 
   445 MD5Stream initialize!
   445 MD5Stream initialize!