aboutsummaryrefslogtreecommitdiff
path: root/python/olm/_base.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-05-10 09:14:29 +0100
committerRichard van der Hoff <richard@matrix.org>2016-05-20 15:25:43 +0100
commit7ccaae564aa0d62aecd50e0cd05cc11af58b2d25 (patch)
tree822d1d19b3104973684cf0632c29b6fe07ab7d61 /python/olm/_base.py
parentacae4e84386056e80eb4bb633fcdf03375c087ea (diff)
Refactor python wrappers
Split the python wrappers into separate modules
Diffstat (limited to 'python/olm/_base.py')
-rw-r--r--python/olm/_base.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/python/olm/_base.py b/python/olm/_base.py
new file mode 100644
index 0000000..8238957
--- /dev/null
+++ b/python/olm/_base.py
@@ -0,0 +1,19 @@
+import os.path
+
+from ctypes import *
+
+def read_random(n):
+ with open("/dev/urandom", "rb") as f:
+ return f.read(n)
+
+lib = cdll.LoadLibrary(os.path.join(
+ os.path.dirname(__file__), "..", "..", "build", "libolm.so")
+)
+
+lib.olm_error.argtypes = []
+lib.olm_error.restypes = c_size_t
+
+ERR = lib.olm_error()
+
+class OlmError(Exception):
+ pass