All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib-python.2.7.md5.py Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith ([email protected])
#  Licensed to PSF under a Contributor Agreement.

import warnings
warnings.warn("the md5 module is deprecated; use hashlib instead",
                DeprecationWarning, 2)

from hashlib import md5
new = md5

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy