| Home | Trees | Indices | Help |
|
|---|
|
|
1 # Copyright (C) 2011 Nominum, Inc.
2 #
3 # Permission to use, copy, modify, and distribute this software and its
4 # documentation for any purpose with or without fee is hereby granted,
5 # provided that the above copyright notice and this permission notice
6 # appear in all copies.
7 #
8 # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
9 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
11 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
14 # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15
16 """Hashing backwards compatibility wrapper"""
17
18 import sys
19 import hashlib
20
21
22 hashes = {}
23 hashes['MD5'] = hashlib.md5
24 hashes['SHA1'] = hashlib.sha1
25 hashes['SHA224'] = hashlib.sha224
26 hashes['SHA256'] = hashlib.sha256
27 hashes['SHA384'] = hashlib.sha384
28 hashes['SHA512'] = hashlib.sha512
29
30
33
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Fri May 27 09:13:40 2016 | http://epydoc.sourceforge.net |