openbsd-ports/security/py-crypto/patches/patch-Hash___init___py
2005-05-28 05:39:45 +00:00

19 lines
628 B
Plaintext

$OpenBSD: patch-Hash___init___py,v 1.1 2005/05/28 05:39:45 djm Exp $
--- Hash/__init__.py.orig Sat May 28 14:37:51 2005
+++ Hash/__init__.py Sat May 28 14:38:28 2005
@@ -12,13 +12,12 @@ The hashing modules here all support the
Submodules:
Crypto.Hash.HMAC RFC 2104: Keyed-Hashing for Message Authentication
-Crypto.Hash.MD2
Crypto.Hash.MD4
Crypto.Hash.MD5
Crypto.Hash.RIPEMD
Crypto.Hash.SHA
"""
-__all__ = ['HMAC', 'MD2', 'MD4', 'MD5', 'RIPEMD', 'SHA', 'SHA256']
+__all__ = ['HMAC', 'MD4', 'MD5', 'RIPEMD', 'SHA', 'SHA256']
__revision__ = "$Id: patch-Hash___init___py,v 1.1 2005/05/28 05:39:45 djm Exp $"