<a href="http://docs.python.org/2/library/hashlib.html">http://docs.python.org/2/library/hashlib.html</a> has an error:<br><br>m.update("Blah") doesn't work.  It gives a type error.  To work, it needs to be m.update("Blah".encode('utf-8'))<br>
<br>I'm using Python 3.3.<br>