-
$AUTH_KEY_LEN
-
-
addExtensionArg
-
Add an extension argument to this OpenID authentication request.
-
answer
-
-
answer
-
-
Association.php
-
-
Auth_OpenID_AlreadySigned
-
An error that indicates that a response was already signed.
-
Auth_OpenID_Association
-
This class represents an association between a server and a consumer. In general, users of this library will never see instances of this object. The only exception is if you implement a custom
Auth_OpenID_OpenIDStore.
-
Auth_OpenID_AuthRequest
-
Initialize an authentication request with the specified token, association, and endpoint.
-
Auth_OpenID_AuthRequest
-
This class represents an authentication request from a consumer to an OpenID server.
-
Auth_OpenID_CANCEL
-
Status to indicate cancellation of OpenID authentication.
-
Auth_OpenID_CancelResponse
-
-
Auth_OpenID_CancelResponse
-
A response with a status of Auth_OpenID_CANCEL. Indicates that the user cancelled the OpenID authentication request. This has two relevant attributes:
-
Auth_OpenID_Consumer
-
An OpenID consumer implementation that performs discovery and does session management. See the Consumer.php file documentation for more information.
-
Auth_OpenID_Consumer
-
Initialize a Consumer instance.
-
Auth_OpenID_ConsumerResponse
-
The base class for responses from the Auth_OpenID_Consumer.
-
Auth_OpenID_DatabaseConnection
-
An empty base class intended to emulate PEAR connection
-
Auth_OpenID_Decoder
-
Decode an incoming Auth_OpenID_WebResponse into an Auth_OpenID_Request.
-
Auth_OpenID_Decoder
-
-
Auth_OpenID_DEFAULT_NONCE_CHRS
-
This is the characters that the nonces are made from.
-
Auth_OpenID_DiffieHellmanConsumerSession
-
-
Auth_OpenID_DiffieHellmanConsumerSession
-
-
Auth_OpenID_DiffieHellmanServerSession
-
-
Auth_OpenID_DiffieHellmanServerSession
-
-
Auth_OpenID_digits
-
-
Auth_OpenID_DO_ABOUT
-
Status code returned when there were no OpenID arguments passed. This code indicates that the caller should return a 200 OK response and display an HTML page that says that this is an OpenID server endpoint.
-
Auth_OpenID_DO_AUTH
-
Status code returned when the caller needs to authenticate the
-
Auth_OpenID_DumbStore
-
Creates a new
Auth_OpenID_DumbStore instance. For the security of the tokens generated by the library, this class attempts to at least have a secure implementation of getAuthKey.
-
Auth_OpenID_DumbStore
-
This is a store for use in the worst case, when you have no way of saving state on the consumer site. Using this store makes the consumer vulnerable to replay attacks, as it's unable to use nonces. Avoid using this store if it is at all possible.
-
Auth_OpenID_Encoder
-
Encode an Auth_OpenID_Response to an Auth_OpenID_WebResponse.
-
Auth_OpenID_EncodingError
-
An error that indicates an encoding problem occurred.
-
Auth_OpenID_EncodingError
-
-
Auth_OpenID_FAILURE
-
This is the status code completeAuth returns when the value it received indicated an invalid login.
-
Auth_OpenID_FailureResponse
-
A response with a status of Auth_OpenID_FAILURE. Indicates that the OpenID protocol has failed. This could be locally or remotely triggered. This has three relevant attributes:
-
Auth_OpenID_FailureResponse
-
-
Auth_OpenID_FileStore
-
Initializes a new
Auth_OpenID_FileStore. This initializes the nonce and association directories, which are subdirectories of the directory passed in.
-
Auth_OpenID_FileStore
-
This is a filesystem-based store for OpenID associations and
-
AUTH_OPENID_HTTP_ERROR
-
-
AUTH_OPENID_HTTP_OK
-
-
AUTH_OPENID_HTTP_REDIRECT
-
-
Auth_OpenID_letters
-
Defines for regexes and format checking.
-
Auth_OpenID_LOCAL_ERROR
-
Status code returned by the server when the only option is to show an error page, since we do not have enough information to redirect back to the consumer. The associated value is an error message that should be displayed on an HTML error page.
-
Auth_OpenID_MalformedReturnURL
-
An error indicating that the return_to URL is malformed.
-
Auth_OpenID_MalformedReturnURL
-
-
Auth_OpenID_MalformedTrustRoot
-
This error is returned when the trust_root value is malformed.
-
Auth_OpenID_MySQLStore
-
An SQL store that uses MySQL as its backend.
-
Auth_OpenID_NO_MATH_SUPPORT
-
-
Auth_OpenID_OpenIDStore
-
This is the interface for the store objects the OpenID library
-
Auth_OpenID_PARSE_ERROR
-
This is the status code beginAuth returns when the page fetched from the entered OpenID URL doesn't contain the necessary link tags to function as an identity page.
-
Auth_OpenID_PlainTextConsumerSession
-
-
Auth_OpenID_PlainTextServerSession
-
-
Auth_OpenID_PostgreSQLStore
-
An SQL store that uses PostgreSQL as its backend.
-
Auth_OpenID_punct
-
-
Auth_OpenID_REDIRECT
-
Status code returned when there is a redirect back to the consumer. The value is the URL to redirect back to. The caller should return a 302 Found redirect with a Location: header containing the URL.
-
Auth_OpenID_REMOTE_ERROR
-
Status code returned when there is an error to return in key-value form to the consumer. The caller should return a 400 Bad Request response with content-type text/plain and the value as the body.
-
Auth_OpenID_REMOTE_OK
-
Status code returned when there is a key-value form OK response to the consumer. The value associated with this code is the response. The caller should return a 200 OK response with content-type text/plain and the value as the body.
-
Auth_OpenID_Server
-
-
Auth_OpenID_Server
-
An object that implements the OpenID protocol for a single URL.
-
Auth_OpenID_ServerError
-
An error class which gets instantiated and returned whenever an OpenID protocol error occurs. Be prepared to use this in place of an ordinary server response.
-
Auth_OpenID_ServerRequest
-
Object that holds the state of a request to the OpenID server
-
Auth_OpenID_ServerRequest
-
-
Auth_OpenID_SetupNeededResponse
-
-
Auth_OpenID_SetupNeededResponse
-
A response with a status of Auth_OpenID_SETUP_NEEDED. Indicates that the request was in immediate mode, and the server is unable to authenticate the user without further interaction.
-
Auth_OpenID_SETUP_NEEDED
-
This is the status code completeAuth returns when the
Auth_OpenID_Consumer instance is in immediate mode, and the identity server sends back a URL to send the user to to complete his or her login.
-
Auth_OpenID_Signatory
-
Create a new signatory using a given store.
-
Auth_OpenID_Signatory
-
Responsible for the signature of query data and the verification of OpenID signature values.
-
Auth_OpenID_SigningEncoder
-
-
Auth_OpenID_SigningEncoder
-
An encoder which also takes care of signing fields when required.
-
Auth_OpenID_SQLiteStore
-
An SQL store that uses SQLite as its backend.
-
Auth_OpenID_SQLStore
-
This is the parent class for the SQL stores, which contains the logic common to all of the SQL stores.
-
Auth_OpenID_SQLStore
-
This creates a new SQLStore instance. It requires an established database connection be given to it, and it allows overriding the default table names.
-
Auth_OpenID_SUCCESS
-
This is the status code returned when the complete method returns successfully.
-
Auth_OpenID_SuccessResponse
-
A response with a status of Auth_OpenID_SUCCESS. Indicates that
-
Auth_OpenID_UntrustedReturnURL
-
An error that indicates that the given return_to is not under the given trust_root.
-
Auth_OpenID_UntrustedReturnURL
-
-
Auth_OpenID_WebResponse
-
-
Auth_OpenID_WebResponse
-
A web-capable response object which you can use to generate a user-agent response.
-
autoCommit
-
Sets auto-commit mode on this database connection.
-
getAll
-
Run an SQL query with the specified parameters, if any.
-
getAssociation
-
Retrieve an association. If no handle is specified, return the association with the most recent issue time.
-
getAssociation
-
This implementation always returns null.
-
getAssociation
-
Given an association handle, get the association from the store, or return a ServerError or null if something goes wrong.
-
getAssociation
-
-
getAssociation
-
This method returns an Association object from storage that matches the server URL and, if specified, handle. It returns null if no such association is found or if the matching association is expired.
-
getAssociationFilename
-
Create a unique filename for a given server url and
-
getAuthKey
-
Retrieve the auth key from the file specified by $this->auth_key_name, creating it if it does not exist.
-
getAuthKey
-
This method returns a key used to sign the tokens, to ensure that they haven't been tampered with in transit. It should return the same key every time it is called. The key returned should be AUTH_KEY_LEN bytes long.
-
getAuthKey
-
-
getAuthKey
-
This method returns the auth key generated by the constructor.
-
getExpiresIn
-
This returns the number of seconds this association is still valid for, or 0 if the association is no longer valid.
-
getOne
-
Run an SQL query and return the first column of the first row of the result set, if any.
-
getRequest
-
-
getRequest
-
-
getReturnTo
-
Get the openid.return_to argument from this response.
-
getRow
-
Run an SQL query and return the first row of the result set, if any.