From: Robin H. Johnson Date: Sat, 1 Oct 2011 07:40:53 +0000 (+0000) Subject: Manifest2 hash: SHA512 X-Git-Tag: v2.2.0_alpha61~25 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8ac29097395f24ad331602d8e87fdf105ebd972b;p=portage.git Manifest2 hash: SHA512 Provide SHA512 hash algorithm to be used as new Manifest2 hash. Signed-off-by: Robin H. Johnson --- diff --git a/pym/portage/checksum.py b/pym/portage/checksum.py index a4cf8de3c..6bace4d6a 100644 --- a/pym/portage/checksum.py +++ b/pym/portage/checksum.py @@ -96,6 +96,7 @@ try: md5hash = _generate_hash_function("MD5", hashlib.md5, origin="hashlib") sha1hash = _generate_hash_function("SHA1", hashlib.sha1, origin="hashlib") sha256hash = _generate_hash_function("SHA256", hashlib.sha256, origin="hashlib") + sha512hash = _generate_hash_function("SHA512", hashlib.sha512, origin="hashlib") for local_name, hash_name in (("rmd160", "ripemd160"), ("whirlpool", "whirlpool")): try: hashlib.new(hash_name)