From 5887d925486e7ce650c3440de6cd29dd2240e929 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Tue, 15 Mar 2022 16:12:48 +0100 Subject: Add callback state change and simplify wrappers The python wrapper contained lots of code that should not be exposed. The other wrappers I will update later --- wrappers/python/eduvpncommon/auth.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 wrappers/python/eduvpncommon/auth.py (limited to 'wrappers/python/eduvpncommon/auth.py') 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 -- cgit v1.2.3