summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpncommon/auth.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/eduvpncommon/auth.py')
-rw-r--r--wrappers/python/eduvpncommon/auth.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/wrappers/python/eduvpncommon/auth.py b/wrappers/python/eduvpncommon/auth.py
deleted file mode 100644
index b0d1410..0000000
--- a/wrappers/python/eduvpncommon/auth.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from . import lib
-from ctypes import *
-
-def Register(name, url):
- name_bytes = name.encode('utf-8')
- url_bytes = url.encode('utf-8')
- lib.Register(name_bytes, url_bytes)
-
-def InitializeOAuth():
- ptr = lib.InitializeOAuth()
- value = cast(ptr, c_char_p).value
- authURL = value.decode()
- lib.FreeString(ptr)
- return authURL