-
$_code
-
Authentication result code
-
$_data
-
Holds the actual auth data
-
$_filename
-
Filename against which authentication queries are performed
-
$_identity
-
The identity used in the authentication attempt
-
$_instance
-
Singleton instance
-
$_member
-
Session object member
-
$_messages
-
An array of string reasons why the authentication attempt was unsuccessful
-
$_namespace
-
Session namespace
-
$_password
-
Password for the user of the realm
-
$_realm
-
Digest authentication realm
-
$_session
-
Object to proxy $_SESSION storage
-
$_storage
-
Persistent storage handler
-
$_username
-
Digest authentication user
-
__construct
-
Sets session storage options and initializes session namespace object
-
__construct
-
Sets adapter options
-
__construct
-
Sets the result code, identity, and failure messages
-
$_credential
-
$_credential - Credential values
-
$_credentialColumn
-
$_credentialColumns - columns to be used as the credentials
-
$_credentialTreatment
-
$_credentialTreatment - Treatment applied to the credential, such as MD5() or PASSWORD()
-
$_identity
-
$_identity - Identity value
-
$_identityColumn
-
$_identityColumn - the column to use as the identity
-
$_resultRow
-
$_resultRow - Results of database authentication query
-
$_tableName
-
$_tableName - the table name to check
-
$_zendDb
-
Database Connection
-
__construct
-
__construct() - Sets configuration options
-
$_acceptSchemes
-
List of schemes this class will accept from the client
-
$_algo
-
The actual algorithm to use. Defaults to MD5
-
$_basicResolver
-
Object that looks up user credentials for the Basic scheme
-
$_digestResolver
-
Object that looks up user credentials for the Digest scheme
-
$_domains
-
Space-delimited list of protected domains for Digest Auth
-
$_file
-
Path to credentials file
-
$_ieNoOpaque
-
Flag indicating the client is IE and didn't bother to return the opaque string
-
$_imaProxy
-
Whether or not to do Proxy Authentication instead of origin server authentication (send 407's instead of 401's). Off by default.
-
$_nonceTimeout
-
Nonce timeout period
-
$_realm
-
The protection realm to use
-
$_request
-
Reference to the HTTP Request object
-
$_response
-
Reference to the HTTP Response object
-
$_supportedAlgos
-
List of the supported digest algorithms. I want to support both MD5 and MD5-sess, but MD5-sess won't make it into the first version.
-
$_supportedQops
-
List of supported qop options. My intetion is to support both 'auth' and 'auth-int', but 'auth-int' won't make it into the first version.
-
$_supportedSchemes
-
List of authentication schemes supported by this class
-
$_useOpaque
-
Whether to send the opaque value in the header. True by default
-
_basicAuth
-
Basic Authentication
-
_basicHeader
-
Basic Header
-
_calcNonce
-
Calculate Nonce
-
_calcOpaque
-
Calculate Opaque
-
_challengeClient
-
Challenge Client
-
_digestAuth
-
Digest Authentication
-
_digestHeader
-
Digest Header
-
_parseDigestAuth
-
Parse Digest Authorization header
-
__construct
-
Constructor
-
__construct
-
Constructor
-
getCode
-
getCode() - Get the result code for this authentication attempt
-
getFilename
-
Returns the filename option value or null if it has not yet been set
-
getIdentity
-
Returns the identity from storage or null if no identity is available
-
getIdentity
-
Returns the identity used in the authentication attempt
-
getInstance
-
Returns an instance of Zend_Auth
-
getMember
-
Returns the name of the session object member
-
getMessages
-
Returns an array of string reasons why the authentication attempt was unsuccessful
-
getNamespace
-
Returns the session namespace
-
getPassword
-
Returns the password option value or null if it has not yet been set
-
getRealm
-
Returns the realm option value or null if it has not yet been set
-
getStorage
-
Returns the persistent storage handler
-
getUsername
-
Returns the username option value or null if it has not yet been set
-
getResultRowObject
-
getResultRowObject() - Returns the result row as a stdClass object
-
getBasicResolver
-
Getter for the _basicResolver property
-
getDigestResolver
-
Getter for the _digestResolver property
-
getFile
-
Returns the path to the credentials file
-
getRequest
-
Getter for the Request object
-
getResponse
-
Getter for the Response object
-
Session.php
-
-
setFilename
-
Sets the filename option value
-
setPassword
-
Sets the password option value
-
setRealm
-
Sets the realm option value
-
setStorage
-
Sets the persistent storage handler
-
setUsername
-
Sets the username option value
-
SUCCESS
-
Authentication success.
-
setCredential
-
setCredential() - set the credential value to be used, optionally can specify a treatment to be used, should be supplied in parameterized form, such as 'MD5(?)' or 'PASSWORD(?)'
-
setCredentialColumn
-
setCredentialColumn() - set the column name to be used as the credential column
-
setCredentialTreatment
-
setCredentialTreatment() - allows the developer to pass a parameterized string that is used to transform or treat the input credential data
-
setIdentity
-
setIdentity() - set the value to be used as the identity
-
setIdentityColumn
-
setIdentityColumn() - set the column name to be used as the identity column
-
setTableName
-
setTableName() - set the table name to be used in the select query
-
setBasicResolver
-
Setter for the _basicResolver property
-
setDigestResolver
-
Setter for the _digestResolver property
-
setFile
-
Set the path to the credentials file
-
setRequest
-
Setter for the Request object
-
setResponse
-
Setter for the Response object