~timchen119/+junk/pure-python-paramiko

« back to all changes in this revision

Viewing changes to Crypto/Hash/MD5.py

  • Committer: Jian-Ding Chen (timchen119)
  • Date: 2012-09-13 08:39:47 UTC
  • Revision ID: tim.chen119@canonical.com-20120913083947-cj7n3kykau7dj38m
http://timchen119.blogspot.tw/2008/06/tips-add-bzr-sftp-support-when-you-have.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Just use the MD5 module from the Python standard library
 
3
 
 
4
__revision__ = "$Id: MD5.py,v 1.4 2002/07/11 14:31:19 akuchling Exp $"
 
5
 
 
6
from md5 import *
 
7
 
 
8
import md5
 
9
if hasattr(md5, 'digestsize'):
 
10
    digest_size = digestsize
 
11
    del digestsize
 
12
del md5
 
13