summaryrefslogtreecommitdiffstats
path: root/botan/wrappers/boost-python/botan/__init__.py
blob: 9e136ed39460850397a14a39494292abae1547f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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