Lines Matching refs:assoc_session
1647 list($assoc_session, $args) = $this->_createAssociateRequest(
1660 return $this->_extractAssociation($response_message, $assoc_session);
1666 * @param Auth_OpenID_PlainTextConsumerSession $assoc_session
1669 function _extractAssociation($assoc_response, $assoc_session) argument
1723 if ($assoc_session->session_type != $session_type) {
1731 $assoc_session = new Auth_OpenID_PlainTextConsumerSession();
1741 if (!in_array($assoc_type, $assoc_session->allowed_assoc_types)) {
1748 $secret = $assoc_session->extractSecret($assoc_response);
1772 $assoc_session = $session_type_class();
1774 $assoc_session = new $session_type_class();
1792 ($assoc_session->session_type != 'no-encryption')) {
1793 $args['session_type'] = $assoc_session->session_type;
1796 $args = array_merge($args, $assoc_session->getRequest());
1798 return [$assoc_session, $message];