summaryrefslogtreecommitdiff
path: root/test_srp.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_srp.py')
-rw-r--r--test_srp.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/test_srp.py b/test_srp.py
index be28c4c..8ad1de9 100644
--- a/test_srp.py
+++ b/test_srp.py
@@ -14,12 +14,12 @@ g_mod = _pysrp
import _ctsrp
u_mod = _ctsrp
v_mod = _ctsrp
-#g_mod = _ctsrp
+g_mod = _ctsrp
try:
import _srp
u_mod = _srp
-# v_mod = _srp
+ v_mod = _srp
g_mod = _srp
except:
print 'C-module not available'
@@ -32,7 +32,8 @@ Verifier = v_mod.Verifier
create_salted_verification_key = g_mod.create_salted_verification_key
HASH = srp.SHA256
-NG = srp.NG_CUSTOM
+#NG = srp.NG_CUSTOM
+NG = srp.NG_8192
username = 'testuser'