diff options
| author | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-11 10:46:22 +0000 |
|---|---|---|
| committer | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-11 10:46:22 +0000 |
| commit | 1d1c6c0ef3f96a3069a70fbf869ca1d981663e62 (patch) | |
| tree | 0e7d8ee849ca63fb75ed1b9e5aef0c5569c9d791 /python | |
| parent | b2a263b48544d235f3704599fed074b5b24f4e41 (diff) | |
| download | lasso-1d1c6c0ef3f96a3069a70fbf869ca1d981663e62.tar.gz lasso-1d1c6c0ef3f96a3069a70fbf869ca1d981663e62.tar.xz lasso-1d1c6c0ef3f96a3069a70fbf869ca1d981663e62.zip | |
Removed server public key in tests: it seems that it is no more used.
Diffstat (limited to 'python')
| -rw-r--r-- | python/tests/login_tests.py | 4 | ||||
| -rwxr-xr-x | python/tests/sample-idp.py | 2 | ||||
| -rwxr-xr-x | python/tests/sample-sp.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/login_tests.py b/python/tests/login_tests.py index 68c511f7..ac95b648 100644 --- a/python/tests/login_tests.py +++ b/python/tests/login_tests.py @@ -46,7 +46,7 @@ class LoginTestCase(unittest.TestCase): lassoServer = lasso.Server.new( '../../examples/data/idp-metadata.xml', - '../../examples/data/idp-public-key.pem', + None, # '../../examples/data/idp-public-key.pem' is no more used '../../examples/data/idp-private-key.pem', '../../examples/data/idp-crt.pem', lasso.signatureMethodRsaSha1) @@ -83,7 +83,7 @@ class LoginTestCase(unittest.TestCase): lassoServer = lasso.Server.new( '../../examples/data/sp-metadata.xml', - '../../examples/data/sp-public-key.pem', + None, # '../../examples/data/sp-public-key.pem' is no more used. '../../examples/data/sp-private-key.pem', '../../examples/data/sp-crt.pem', lasso.signatureMethodRsaSha1) diff --git a/python/tests/sample-idp.py b/python/tests/sample-idp.py index 6db7c18f..c4398dab 100755 --- a/python/tests/sample-idp.py +++ b/python/tests/sample-idp.py @@ -102,7 +102,7 @@ def main(): lassoServer = lasso.Server.new( '../../examples/data/idp-metadata.xml', - '../../examples/data/idp-public-key.pem', + None, # '../../examples/data/idp-public-key.pem' is no more used. '../../examples/data/idp-private-key.pem', '../../examples/data/idp-crt.pem', lasso.signatureMethodRsaSha1) diff --git a/python/tests/sample-sp.py b/python/tests/sample-sp.py index 321b114e..3574b67e 100755 --- a/python/tests/sample-sp.py +++ b/python/tests/sample-sp.py @@ -103,7 +103,7 @@ def main(): lassoServer = lasso.Server.new( '../../examples/data/sp-metadata.xml', - '../../examples/data/sp-public-key.pem', + None, # '../../examples/data/sp-public-key.pem' is no more used. '../../examples/data/sp-private-key.pem', '../../examples/data/sp-crt.pem', lasso.signatureMethodRsaSha1) |
