Re: new is missing in module hmac SHA-based encryption function in Python

2007-11-21 Thread Hailong Wang
uot;test") AttributeError: 'module' object has no attribute 'new' >>> On Nov 21, 2007 8:35 AM, Matt Nordhoff <[EMAIL PROTECTED]> wrote: > Hailong Wang wrote: > > I have small hmac encryption programm by python, but always complain > > that hmac mo

new is missing in module hmac SHA-based encryption function in Python

2007-11-21 Thread Hailong Wang
Hi, 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 import hmac import md5 import sha myhmac = hmac.new("test") Traceback (most recent call last): F