Dummy client: close

pull/15/head
Michael Egorov 2017-08-19 09:10:17 -07:00
parent ef9e80ecf9
commit e35ce6d366
1 changed files with 7 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Client(object):
"""
def __init__(self, **kw):
pass
self._storage = {} # This will actually be remote!
def store_rekeys(self, k, rekeys, algorithm):
"""
@ -36,3 +36,9 @@ class Client(object):
:param bytes ekey: Encrypted symmetric key to reencrypt
"""
pass
def close(self):
"""
Disconnect from the network. In the dummy class - nothing here
"""
pass