summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2020-05-26 20:30:42 +0300
committerIvan Kanakarakis <ivan.kanak@gmail.com>2020-05-26 20:30:44 +0300
commit32ab8e68b48cb0f32b7299a1c72a36f25af3cc17 (patch)
tree9d6215ccb51379d401b09cfcd2d825dd99bbbc3c
parentfd845dbb981849aa6e51fb757aced8723caec688 (diff)
downloadpysaml2-32ab8e68b48cb0f32b7299a1c72a36f25af3cc17.tar.gz
Remove the id_attr_name configuration option
The name of the id-attribute for signing, encrypting and decrypting an XML document is well know for each of those operations. There is no need to define another. Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
-rw-r--r--src/saml2/config.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/saml2/config.py b/src/saml2/config.py
index 1bd2827a..147d1bdf 100644
--- a/src/saml2/config.py
+++ b/src/saml2/config.py
@@ -69,7 +69,6 @@ COMMON_ARGS = [
"extensions",
"allow_unknown_attributes",
"crypto_backend",
- "id_attr_name",
"delete_tmpfiles",
]
@@ -228,7 +227,6 @@ class Config(object):
self.entity_category = []
self.entity_category_support = []
self.crypto_backend = 'xmlsec1'
- self.id_attr_name = None
self.scope = ""
self.allow_unknown_attributes = False
self.extension_schema = {}