Code

Fix matching of incoming email addresses to the alternate_addresses
[roundup.git] / roundup / anypy / hashlib_.py
1 """
2 anypy.hashlib_: encapsulation of hashlib/md5/sha1/sha
3 """
5 try:
6     from hashlib import md5, sha1 # new in Python 2.5
7     shamodule = sha1
8 except ImportError:
9     from md5 import md5           # deprecated in Python 2.6
10     from sha import sha as sha1   # deprecated in Python 2.6
11     import sha as shamodule
13 # vim: ts=8 sts=4 sw=4 si