From 62b576b903f3794658d95a8957a489cf442c9c11 Mon Sep 17 00:00:00 2001
From: Wilfried Klaebe <w+gitstuff@chaos.in-kiel.de>
Date: Thu, 24 May 2018 19:22:39 +0200
Subject: [PATCH] Python: add binding for olm_remove_one_time_keys

Signed-off-by: Wilfried Klaebe <w+gitstuff@chaos.in-kiel.de>
---
 python/olm/account.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

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
-- 
GitLab