IntroductionThe Zend_InfoCard component implements relying-party support for Information Cards. Information Cards are used for identity management on the internet and authentication of users to web sites. The web sites that the user ultimately authenticates to are called relying-parties. Detailed information about information cards and their importance to the internet identity metasystem can be found on the » IdentityBlog. Basic Theory of UsageUsage of Zend_InfoCard can be done one of two ways: either as part of the larger Zend_Auth component via the Zend_InfoCard authentication adapter or as a stand-alone component. In both cases an information card can be requested from a user by using the following HTML block in your HTML login form:
In the example above, the When the above HTML is activated by a user (clicks on it), the browser will bring up a card selection program which not only shows them which information cards meet the requirements of the site, but also allows them to select which information card to use if multiple meet the criteria. This information card is transmitted as an XML document to the specified POST URL and is ready to be processed by the Zend_InfoCard component.
Note, Information cards can only be Using as part of Zend_AuthIn order to use the component as part of the Zend_Auth authentication system, you must use the provided Zend_Auth_Adapter_InfoCard to do so (not available in the standalone Zend_InfoCard distribution). An example of its usage is shown below:
In the example above, we first create an instance of the
Zend_Auth_Adapter_InfoCard and pass the XML
data posted by the card selector into it. Once an instance has been created you
must then provide at least one SSL certificate public/private key
pair used by the web server that received the Once the adapter has been configured, you can then use the standard Zend_Auth facilities to validate the provided information card token and authenticate the user by examining the identity provided by the getIdentity() method. Using the Zend_InfoCard component standaloneIt is also possible to use the Zend_InfoCard component as a standalone component by interacting with the Zend_InfoCard class directly. Using the Zend_InfoCard class is very similar to its use with the Zend_Auth component. An example of its use is shown below:
In the example above, we use the Zend_InfoCard component independently to validate the token provided by the user. As was the case with the Zend_Auth_Adapter_InfoCard, we create an instance of Zend_InfoCard and then set one or more SSL certificate public/private key pairs used by the web server. Once configured, we can use the process() method to process the information card and return the results. Working with a Claims object
Regardless of whether the Zend_InfoCard component is used as
a standalone component or as part of Zend_Auth via
Zend_Auth_Adapter_InfoCard, the ultimate
result of the processing of an information card is a
Zend_InfoCard_Claims object. This object contains the
assertions (a.k.a. claims) made by the submitting user based on the
data requested by your web site when the user authenticated. As
shown in the examples above, the validity of the information card
can be ascertained by calling the
Zend_InfoCard_Claims::isValid() method. Claims
themselves can either be retrieved by simply accessing the
identifier desired (i.e.
In most cases you will never need to use the getClaim()
method. However, if your As part of the validation process, it is the developer's responsibility to examine the issuing source of the claims contained within the information card and to decide if that source is a trusted source of information. To do so, the getIssuer() method is provided within the Zend_InfoCard_Claims object which returns the URI of the issuer of the information card claims. Attaching Information Cards to existing accounts
It is possible to add support for information cards to an existing
authentication system by storing the private personal identifier
(PPI) to a previously traditionally-authenticated account and
including at least the
An example of how to attach an information card to an existing traditional-authentication account is shown below:
Creating Zend_InfoCard AdaptersThe Zend_InfoCard component was designed to allow for growth in the information card standard through the use of a modular architecture. At this time, many of these hooks are unused and can be ignored, but there is one class that should be written for any serious information card implementation: the Zend_InfoCard adapter. The Zend_InfoCard adapter is used as a callback mechanism within the component to perform various tasks, such as storing and retrieving Assertion IDs for information cards when they are processed by the component. While storing the assertion IDs of submitted information cards is not necessary, failing to do so opens up the possibility of the authentication scheme being compromised through a replay attack. To prevent this, one must implement the Zend_InfoCard_Adapter_Interface and set an instance of this interface prior to calling either the process() (standalone) or authenticate() method as a Zend_Auth adapter. To set this interface, the setAdapter() method should be used. In the example below, we set a Zend_InfoCard adapter and use it in our application:
|