ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
Auth_OpenID_PlainTextConsumerSession Class Reference
+ Collaboration diagram for Auth_OpenID_PlainTextConsumerSession:

Public Member Functions

 getRequest ()
 
 extractSecret ($response)
 

Data Fields

 $session_type = 'no-encryption'
 
 $allowed_assoc_types = array('HMAC-SHA1', 'HMAC-SHA256')
 

Detailed Description

Definition at line 528 of file Consumer.php.

Member Function Documentation

◆ extractSecret()

Auth_OpenID_PlainTextConsumerSession::extractSecret (   $response)

Definition at line 537 of file Consumer.php.

References Auth_OpenID_OPENID_NS.

538  {
539  if (!$response->hasKey(Auth_OpenID_OPENID_NS, 'mac_key')) {
540  return null;
541  }
542 
543  return base64_decode($response->getArg(Auth_OpenID_OPENID_NS,
544  'mac_key'));
545  }
const Auth_OpenID_OPENID_NS
Definition: Message.php:42

◆ getRequest()

Auth_OpenID_PlainTextConsumerSession::getRequest ( )

Definition at line 532 of file Consumer.php.

533  {
534  return array();
535  }

Field Documentation

◆ $allowed_assoc_types

Auth_OpenID_PlainTextConsumerSession::$allowed_assoc_types = array('HMAC-SHA1', 'HMAC-SHA256')

Definition at line 530 of file Consumer.php.

◆ $session_type

Auth_OpenID_PlainTextConsumerSession::$session_type = 'no-encryption'

Definition at line 529 of file Consumer.php.


The documentation for this class was generated from the following file: