openbsd-ports/security/py-crypto/patches/patch-Cipher___init___py
wcmaier 4b1391964c Take MAINTAINERSHIP from ish@ (timed out).
Clean up port (MODPY_EGG_VERSION, SUBST_VARS, typo in license
marker) and regen patches while here.

ok merdely@
2008-06-11 02:59:32 +00:00

27 lines
980 B
Plaintext

$OpenBSD: patch-Cipher___init___py,v 1.2 2008/06/11 02:59:32 wcmaier Exp $
--- Cipher/__init__.py.orig Fri Feb 28 09:28:35 2003
+++ Cipher/__init__.py Wed May 28 20:55:20 2008
@@ -11,7 +11,6 @@ If you don't know which algorithm to choose, use AES b
standard and has undergone a fair bit of examination.
Crypto.Cipher.AES Advanced Encryption Standard
-Crypto.Cipher.ARC2 Alleged RC2
Crypto.Cipher.ARC4 Alleged RC4
Crypto.Cipher.Blowfish
Crypto.Cipher.CAST
@@ -19,12 +18,11 @@ Crypto.Cipher.DES The Data Encryption Standard
in the past, but today its 56-bit keys are too small.
Crypto.Cipher.DES3 Triple DES.
Crypto.Cipher.IDEA
-Crypto.Cipher.RC5
Crypto.Cipher.XOR The simple XOR cipher.
"""
-__all__ = ['AES', 'ARC2', 'ARC4',
- 'Blowfish', 'CAST', 'DES', 'DES3', 'IDEA', 'RC5',
+__all__ = ['AES', 'ARC4',
+ 'Blowfish', 'CAST', 'DES', 'DES3',
'XOR'
]