Test case in python and in j, am I misusing the j md5?

   load'/usr/share/j/8.0.4/addons/convert/misc/md5.ijs'
   md5'abcdef609043'
a26563da313447e282c8212455525f33


>>> import hashlib
>>> hashlib.md5(b'abcdef609043')
<md5 HASH object @ 0x7f6261e02d00>
>>> hashlib.md5(b'abcdef609043').hexdigest()
'000001dbbfa3a5c83a2d506429c7b00e'
>>>
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to