コード例 #1
0
ファイル: auth.py プロジェクト: NazoSnare/merlyn
class ContextFactory(object):
    def __init__(self, store):
        self._wrapped = _TOFUContextFactory(store)
        self._wrapper = SecureCiphersContextFactory(self._wrapped)


    def getContext(self):
        return self._wrapper.getContext()
コード例 #2
0
ファイル: auth.py プロジェクト: NazoSnare/merlyn
 def __init__(self, store):
     self._wrapped = _TOFUContextFactory(store)
     self._wrapper = SecureCiphersContextFactory(self._wrapped)