diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-03-12 14:26:38 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-03-12 14:26:38 -0300 |
commit | a120904b512394346b286bb417adf34fc622e739 (patch) | |
tree | 49725d30297c8036a4c48308dde12f6bc2f0e05c /src/leap/crypto/srpauth.py | |
parent | 66464e6a2ea48d3dbafaa7c11b14478e7d34ab4d (diff) |
Get eip cert with session_id when possible
Diffstat (limited to 'src/leap/crypto/srpauth.py')
-rw-r--r-- | src/leap/crypto/srpauth.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/crypto/srpauth.py b/src/leap/crypto/srpauth.py index 2877efab..c1964514 100644 --- a/src/leap/crypto/srpauth.py +++ b/src/leap/crypto/srpauth.py @@ -390,6 +390,9 @@ class SRPAuth(QtCore.QObject): self.authentication_finished.emit(False, "%s" % (e,)) return False + def get_session_id(self): + return self.__instance.get_session_id() + def logout(self): """ Logs out the current session. |