aboutsummaryrefslogtreecommitdiff
path: root/python/olm/_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/olm/_base.py')
-rw-r--r--python/olm/_base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/olm/_base.py b/python/olm/_base.py
index 80720d9..64cb98b 100644
--- a/python/olm/_base.py
+++ b/python/olm/_base.py
@@ -2,9 +2,6 @@ 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.2")