summaryrefslogtreecommitdiff
path: root/src/leap/base/auth.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-12-15 02:25:12 +0900
committerkali <kali@leap.se>2012-12-15 02:25:12 +0900
commit914a07aaf8ef52b2eaf88f1bf01fb6f72adcac5a (patch)
tree1540883cdc002930210365c4d2e975a93b2a7989 /src/leap/base/auth.py
parentd71e05fdefa7cb9699804bc93adba97921ca923f (diff)
use gnutls to parse pemfiles
Diffstat (limited to 'src/leap/base/auth.py')
-rw-r--r--src/leap/base/auth.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/leap/base/auth.py b/src/leap/base/auth.py
index 56b7cf96..c6bd3518 100644
--- a/src/leap/base/auth.py
+++ b/src/leap/base/auth.py
@@ -255,6 +255,7 @@ class SRPAuth(requests.auth.AuthBase):
try:
assert self.srp_usr.authenticated()
logger.debug('user is authenticated!')
+ print 'user is authenticated!'
except (AssertionError):
raise SRPAuthenticationError(
"Auth verification failed.")
@@ -355,8 +356,11 @@ if __name__ == "__main__":
req.raise_for_status
return req
- req = test_srp_protected_get('https://localhost:8443/1/cert')
- print 'cert :', req.content[:200] + "..."
+ #req = test_srp_protected_get('https://localhost:8443/1/cert')
+ req = test_srp_protected_get('%s/1/cert' % SERVER)
+ import ipdb;ipdb.set_trace()
+ #print 'cert :', req.content[:200] + "..."
+ print 'cert :', req.content
sys.exit(0)
if action == "add":