Home
last modified time | relevance | path

Searched refs:relayState (Results 1 – 25 of 122) sorted by relevance

12345

/dports/security/shibboleth-sp/shibboleth-sp-3.3.0/shibsp/handler/impl/
H A DAbstractHandler.cpp248 if (relayState.empty()) { in preserveRelayState()
250 relayState = "corr:" + lexical_cast<string>(time(nullptr)) + '_' + relayState; in preserveRelayState()
268 if (relayState.find("cookie:") != 0 && relayState.find("ss:") != 0) { in preserveRelayState()
281 if (relayState.find("cookie:") != 0 && relayState.find("ss:") != 0) { in preserveRelayState()
338 relayState.clear(); in recoverRelayState()
423 relayState.erase(); in recoverRelayState()
427 if (relayState.empty() || relayState == "default" || relayState == "cookie") { in recoverRelayState()
432 relayState = '/'; in recoverRelayState()
519 const char* relayState, in sendMessage() argument
807 if (strstr(relayState, "cookie:") == relayState) { in getPostCookieName()
[all …]
H A DAssertionConsumerService.cpp177 string relayState; in processMessage() local
203 if (!relayState.empty()) in processMessage()
212 if (!relayState.empty()) { in processMessage()
231 if (!relayState.empty()) { in processMessage()
237 relayState.erase(); in processMessage()
248 if (ignore.first && ignore.second && !relayState.empty()) { in processMessage()
254 if (!relayState.empty()) { in processMessage()
255 ex.addProperty("RelayState", relayState.c_str()); in processMessage()
302 recoverRelayState(application, httpRequest, httpResponse, relayState); in finalizeResponse()
303 application.limitRedirect(httpRequest, relayState.c_str()); in finalizeResponse()
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/mattermost/gosaml2/
H A Dbuild_request.go157 if relayState != "" {
158 qs.Add("RelayState", relayState)
179 return sp.buildAuthURLFromDocument(relayState, BindingHttpPost, doc)
182 func (sp *SAMLServiceProvider) BuildAuthURLRedirect(relayState string, doc *etree.Document) (string…
183 return sp.buildAuthURLFromDocument(relayState, BindingHttpRedirect, doc)
187 func (sp *SAMLServiceProvider) BuildAuthURL(relayState string) (string, error) {
192 return sp.BuildAuthURLFromDocument(relayState, doc)
199 url, err := sp.BuildAuthURL(relayState)
211 func signatureInputString(samlRequest, relayState, sigAlg string) string { argument
213 if relayState == "" {
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/IdP/
H A DTraditionalLogoutHandler.php49 $relayState = \SimpleSAML_Auth_State::saveState($state, 'core:LogoutTraditional', true);
56 … = call_user_func(array($association['Handler'], 'getLogoutURL'), $idp, $association, $relayState);
92 * @param string|null $relayState The RelayState from the start of the logout.
97 public function onResponse($assocId, $relayState, \SimpleSAML_Error_Exception $error = null) argument
100 assert(is_string($relayState) || $relayState === null);
102 if ($relayState === null) {
106 $state = \SimpleSAML_Auth_State::loadState($relayState, 'core:LogoutTraditional');
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/IdP/
H A DTraditionalLogoutHandler.php53 $relayState = Auth\State::saveState($state, 'core:LogoutTraditional', true);
60 … $url = call_user_func([$association['Handler'], 'getLogoutURL'], $idp, $association, $relayState);
97 * @param string|null $relayState The RelayState from the start of the logout.
103 public function onResponse($assocId, $relayState, Error\Exception $error = null) argument
106 assert(is_string($relayState) || $relayState === null);
108 if ($relayState === null) {
112 $state = Auth\State::loadState($relayState, 'core:LogoutTraditional');
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/XML/Shib13/
H A DAuthnRequest.php22 private $relayState = null; variable in SimpleSAML\\XML\\Shib13\\AuthnRequest
26 * @param string|null $relayState
29 public function setRelayState($relayState) argument
31 $this->relayState = $relayState;
40 return $this->relayState;
/dports/security/opensaml/opensaml-3.2.1/saml/saml2/binding/impl/
H A DSAML2ArtifactEncoder.cpp70 const char* relayState=nullptr,
134 const char* relayState, in encode() argument
151 if (relayState && strlen(relayState)>80) in encode()
159 preserveCorrelationID(*httpResponse, *request, relayState); in encode()
216 if (relayState && *relayState) in encode()
217 loc = loc + "&RelayState=" + escaper->encode(relayState); in encode()
234 if (relayState && *relayState) in encode()
235 params.m_map["RelayState"] = relayState; in encode()
H A DSAML2MessageEncoder.cpp57 …elationID(HTTPResponse& response, const RequestAbstractType& message, const char* relayState) const in preserveCorrelationID()
61 if (relayState && *relayState) { in preserveCorrelationID()
63 XMLToolingConfig::getConfig().getURLEncoder()->encode(relayState)); in preserveCorrelationID()
65 log.debug("tracking request (%s) against RelayState token (%s)", id.get(), relayState); in preserveCorrelationID()
H A DSAML2POSTEncoder.cpp70 const char* relayState=nullptr,
123 const char* relayState, in encode() argument
191 if (relayState && *relayState) in encode()
192 input = input + "&RelayState=" + relayState; in encode()
238 if (relayState && *relayState) in encode()
239 pmap.m_map["RelayState"] = relayState; in encode()
249 preserveCorrelationID(*httpResponse, *request, relayState); in encode()
H A DSAML2RedirectEncoder.cpp69 const char* relayState=nullptr,
89 const char* relayState, in encode() argument
111 preserveCorrelationID(*httpResponse, *request, relayState); in encode()
152 if (relayState && *relayState) in encode()
153 xmlbuf = xmlbuf + "&RelayState=" + escaper->encode(relayState); in encode()
/dports/www/mattermost-server/mattermost-server-6.0.2/einterfaces/mocks/
H A DSamlInterface.go19 func (_m *SamlInterface) BuildRequest(relayState string) (*model.SamlAuthRequest, *model.AppError) {
20 ret := _m.Called(relayState)
24 r0 = rf(relayState)
33 r1 = rf(relayState)
72 func (_m *SamlInterface) DoLogin(c *request.Context, encodedXML string, relayState map[string]strin…
73 ret := _m.Called(c, encodedXML, relayState)
77 r0 = rf(c, encodedXML, relayState)
86 r1 = rf(c, encodedXML, relayState)
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/XML/Shib13/
H A DAuthnRequest.php16 private $relayState = null; variable in SimpleSAML\\XML\\Shib13\\AuthnRequest
18 public function setRelayState($relayState) argument
20 $this->relayState = $relayState;
25 return $this->relayState;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/saml/lib/IdP/
H A DSAML2.php37 $relayState = $state['saml:RelayState'];
67 $ar->setRelayState($relayState);
111 $relayState = $state['saml:RelayState'];
126 $ar->setRelayState($relayState);
285 $relayState = null;
404 if ($relayState !== null) {
464 assert(is_string($relayState) || $relayState === null);
633 assert(is_string($relayState) || $relayState === null);
649 if ($relayState !== null) {
1122 $relayState argument
[all …]
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/modules/saml/lib/IdP/
H A DSAML2.php66 $relayState = $state['saml:RelayState'];
96 $ar->setRelayState($relayState);
141 $relayState = $state['saml:RelayState'];
156 $ar->setRelayState($relayState);
317 $relayState = null;
452 if ($relayState !== null) {
505 assert(is_string($relayState) || $relayState === null);
686 assert(is_string($relayState) || $relayState === null);
704 if ($relayState !== null) {
1379 $relayState argument
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/saml2/src/SAML2/
H A DHTTPRedirect.php30 $relayState = $message->getRelayState();
51 if ($relayState !== null) {
52 $msg .= '&RelayState=' . urlencode($relayState);
167 $relayState = '';
188 $relayState = '&RelayState=' . $value;
196 $data['SignedQuery'] = $sigQuery . $relayState . $sigAlg;
/dports/net-mgmt/zabbix5-java/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix5-agent/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix54-java/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix54-server/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix5-frontend/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix5-server/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix5-proxy/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix54-proxy/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix54-agent/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]
/dports/net-mgmt/zabbix54-frontend/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php691 * @param string $relayState The RelayState
699 …public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::… argument
701 … return $this->buildMessageSignature($samlRequest, $relayState, $signAlgorithm, "SAMLRequest");
708 * @param string $relayState The RelayState
716 …public function buildResponseSignature($samlResponse, $relayState, $signAlgorithm = XMLSecurityKey… argument
718 … return $this->buildMessageSignature($samlResponse, $relayState, $signAlgorithm, "SAMLResponse");
725 * @param string $relayState The RelayState
753 if (isset($relayState)) {
754 $msg .= '&RelayState='.rawurlencode($relayState);
759 if (isset($relayState)) {
[all …]

12345