aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-09 16:48:02 +0000
committerlloyd <[email protected]>2009-10-09 16:48:02 +0000
commitc4264a0404cd9b0b9dcba66a2ca157174d934b09 (patch)
tree6e887fe15f674bc96d59e4292531d1d7ceb0fb0f
parent2ce232944ab89b021d59d8c793815e54dd61c322 (diff)
Remove old code in __init__.py
-rw-r--r--wrappers/boost-python/botan/__init__.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/wrappers/boost-python/botan/__init__.py b/wrappers/boost-python/botan/__init__.py
index 9e136ed39..2df9a456f 100644
--- a/wrappers/boost-python/botan/__init__.py
+++ b/wrappers/boost-python/botan/__init__.py
@@ -2,26 +2,3 @@ from _botan import *
# Initialize the library when the module is imported
init = LibraryInitializer()
-
-class SymmetricKey(OctetString):
- pass
-
-class InitializationVector(OctetString):
- pass
-
-def Filter(name, key = None, iv = None, dir = None):
- if key != None and iv != None and dir != None:
- return make_filter(name, key, iv, dir)
- elif key != None and dir != None:
- return make_filter(name, key, dir)
- elif key != None:
- return make_filter(name, key)
- else:
- return make_filter(name)
-
-def Pipe(*filters):
- pipe = PipeObj()
- for filter in filters:
- if filter:
- pipe.append(filter)
- return pipe