You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
462 B
14 lines
462 B
--- pycrypto-2.0.1.orig/Hash/HMAC.py 2002-07-25 13:19:02.000000000 -0400
|
|
+++ pycrypto-2.0.1/Hash/HMAC.py 2009-02-13 14:11:10.000000000 -0500
|
|
@@ -33,8 +33,8 @@
|
|
digestmod: A module supporting PEP 247. Defaults to the md5 module.
|
|
"""
|
|
if digestmod == None:
|
|
- import md5
|
|
- digestmod = md5
|
|
+ import MD5
|
|
+ digestmod = MD5
|
|
|
|
self.digestmod = digestmod
|
|
self.outer = digestmod.new()
|