summaryrefslogtreecommitdiff
path: root/src/saml2/client_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/client_base.py')
-rw-r--r--src/saml2/client_base.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/saml2/client_base.py b/src/saml2/client_base.py
index 3f7a227b..da35ae9c 100644
--- a/src/saml2/client_base.py
+++ b/src/saml2/client_base.py
@@ -542,7 +542,7 @@ class Base(Entity):
# ======== response handling ===========
def parse_authn_request_response(self, xmlstr, binding, outstanding=None,
- outstanding_certs=None, decrypt=True, pefim=False):
+ outstanding_certs=None):
""" Deal with an AuthnResponse
:param xmlstr: The reply as a xml string
@@ -573,12 +573,11 @@ class Base(Entity):
"attribute_converters": self.config.attribute_converters,
"allow_unknown_attributes":
self.config.allow_unknown_attributes,
- "decrypt": decrypt
}
try:
resp = self._parse_response(xmlstr, AuthnResponse,
"assertion_consumer_service",
- binding, pefim=pefim, **kwargs)
+ binding, **kwargs)
except StatusError as err:
logger.error("SAML status error: %s" % err)
raise