github.com/google/grumpy@v0.0.0-20171122020858-3ec87959189c/third_party/stdlib/md5.py (about) 1 # $Id$ 2 # 3 # Copyright (C) 2005 Gregory P. Smith (greg@krypto.org) 4 # Licensed to PSF under a Contributor Agreement. 5 6 # import warnings 7 # warnings.warn("the md5 module is deprecated; use hashlib instead", 8 # DeprecationWarning, 2) 9 10 # from hashlib import md5 11 import _md5 12 13 new = _md5.new 14 md5 = _md5.new 15 digest_size = 16