Hi,<br><br>I have small hmac encryption programm by python, but always complain that hmac module does not have attribute new, do I need to install anything additinal in my laptop? I am using python 2.5.1<br><br>import hmac
<br>import md5<br>import sha<br>myhmac = hmac.new("test")<br><br><br>Traceback (most recent call last):<br>  File "C:\Python25\hw_script\hmac.py", line 1, in <module><br>    import hmac<br>  File "C:\Python25\hw_script\hmac.py", line 4, in <module>
<br>    myhmac = hmac.new("test")<br>AttributeError: 'module' object has no attribute 'new'<br><br><br clear="all">Thank you very much,<br><br><br>Harold