diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-03-28 14:43:43 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-04-15 15:00:08 -0300 |
commit | 8e492fe37168e2e6874684e422376f2a43b4a4a4 (patch) | |
tree | bf696873a5ee5b4cf1bce5cc1c0a8f538213c270 /src/leap/bitmask | |
parent | 733dc642962c14cd664aba694e4d3b5300e69d8b (diff) |
Remove unused 'hack' helpers.
Diffstat (limited to 'src/leap/bitmask')
-rw-r--r-- | src/leap/bitmask/backend.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/leap/bitmask/backend.py b/src/leap/bitmask/backend.py index e179b7d5..00a399ee 100644 --- a/src/leap/bitmask/backend.py +++ b/src/leap/bitmask/backend.py @@ -749,26 +749,6 @@ class Backend(object): # XXX HACK: this section is meant to be a place to hold methods and # variables needed in the meantime while we migrate all to the backend. - def srpauth_get_username(self): - srp_auth = self._components["authenticate"]._srp_auth - if srp_auth is not None: - return srp_auth.get_username() - - def srpauth_get_session_id(self): - srp_auth = self._components["authenticate"]._srp_auth - if srp_auth is not None: - return srp_auth.get_session_id() - - def srpauth_get_uuid(self): - srp_auth = self._components["authenticate"]._srp_auth - if srp_auth is not None: - return srp_auth.get_uuid() - - def srpauth_get_token(self): - srp_auth = self._components["authenticate"]._srp_auth - if srp_auth is not None: - return srp_auth.get_token() - def get_provider_config(self): provider_config = self._components["provider"]._provider_config return provider_config |