File: MD5.py

package info (click to toggle)
python-crypto 2.0.1%2Bdfsg1-1.2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 736 kB
  • ctags: 932
  • sloc: ansic: 6,591; python: 3,585; makefile: 13; sh: 10
file content (13 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13

# Just use the MD5 module from the Python standard library

__revision__ = "$Id: MD5.py,v 1.4 2002/07/11 14:31:19 akuchling Exp $"

from md5 import *

import md5
if hasattr(md5, 'digestsize'):
    digest_size = digestsize
    del digestsize
del md5