Staging
v0.5.1
https://github.com/python/cpython
Revision 6b4953fd3d3d1df06f692af67f593d3d0a7aef26 authored by Neal Norwitz on 12 August 2006, 02:06:34 UTC, committed by Neal Norwitz on 12 August 2006, 02:06:34 UTC
1 parent b45f351
Raw File
Tip revision: 6b4953fd3d3d1df06f692af67f593d3d0a7aef26 authored by Neal Norwitz on 12 August 2006, 02:06:34 UTC
Check returned pointer is valid.
Tip revision: 6b4953f
md5.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@electricrain.com)
#  Licensed to PSF under a Contributor Agreement.

from hashlib import md5
new = md5

blocksize = 1        # legacy value (wrong in any useful sense)
digest_size = 16
back to top