summaryrefslogtreecommitdiffstats
path: root/python/doc
diff options
context:
space:
mode:
authorEmmanuel Raviart <eraviart@entrouvert.com>2004-07-13 11:50:44 +0000
committerEmmanuel Raviart <eraviart@entrouvert.com>2004-07-13 11:50:44 +0000
commit71459bc129f9031c7f4e878e7f53343f20a52c3f (patch)
tree22162fb88c7ad10df723987819fec945a6e377d4 /python/doc
parent561edbaad8bcdd227160d49b410dde22a5b19f0f (diff)
downloadlasso-71459bc129f9031c7f4e878e7f53343f20a52c3f.tar.gz
lasso-71459bc129f9031c7f4e878e7f53343f20a52c3f.tar.xz
lasso-71459bc129f9031c7f4e878e7f53343f20a52c3f.zip
Document a trap in which I was caught.
Diffstat (limited to 'python/doc')
-rw-r--r--python/doc/tutorial/sp-init.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/doc/tutorial/sp-init.py b/python/doc/tutorial/sp-init.py
index 6c2e9227..7706f130 100644
--- a/python/doc/tutorial/sp-init.py
+++ b/python/doc/tutorial/sp-init.py
@@ -9,6 +9,7 @@ import lasso
# Initialize with service provider informations.
[...] # Get metadata_file_path, public_key_file_path, private_key_file_path &
# certificate_file_path.
+# The last argument lassoSignatureMethod... must be the method used to crypt the private key.
server = lasso.Server.new(metadata_file_path, public_key_file_path, private_key_file_path,
certificate_file_path, lasso.signatureMethodRsaSha1)