aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/olm/account.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/olm/account.py b/python/olm/account.py
index 3c9ea88..b103a51 100644
--- a/python/olm/account.py
+++ b/python/olm/account.py
@@ -53,6 +53,10 @@ account_function(
c_size_t,
c_void_p, c_size_t
)
+account_function(
+ lib.olm_remove_one_time_keys,
+ c_void_p # Session
+)
class Account(object):
@@ -122,5 +126,11 @@ class Account(object):
self.ptr, count, random_buffer, random_length
)
+ def remove_one_time_keys(self, session):
+ lib.olm_remove_one_time_keys(
+ self.ptr,
+ session.ptr
+ )
+
def clear(self):
pass