Lines Matching refs:assoc_session
1554 list($assoc_session, $args) = $this->_createAssociateRequest(
1567 return $this->_extractAssociation($response_message, $assoc_session);
1573 function _extractAssociation($assoc_response, $assoc_session) argument
1627 if ($assoc_session->session_type != $session_type) {
1635 $assoc_session = new Auth_OpenID_PlainTextConsumerSession();
1645 if (!in_array($assoc_type, $assoc_session->allowed_assoc_types)) {
1652 $secret = $assoc_session->extractSecret($assoc_response);
1671 $assoc_session = $session_type_class();
1673 $assoc_session = new $session_type_class();
1690 ($assoc_session->session_type != 'no-encryption')) {
1691 $args['session_type'] = $assoc_session->session_type;
1694 $args = array_merge($args, $assoc_session->getRequest());
1696 return array($assoc_session, $message);