Auth_OpenID_DumbStore Auth_OpenID_DumbStore(
string
$secret_phrase
)
|
|
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.
When you create an instance of this class, pass in a secret phrase. The phrase is hashed with sha1 to make it the correct length and form for an auth key. That allows you to use a long string as the secret phrase, which means you can make it very difficult to guess.
Each Auth_OpenID_DumbStore instance that is created for use by your consumer site needs to use the same $secret_phrase.
Parameters:
|
string |
$secret_phrase: |
secret_phrase The phrase used to create the auth key returned by getAuthKey |
void getAssociation(
$server_url, [
$handle = null]
)
|
|
This implementation always returns null.
Parameters:
Redefinition of:
- Auth_OpenID_OpenIDStore::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.
This method returns the auth key generated by the constructor.
void removeAssociation(
$server_url,
$handle
)
|
|
This implementation always returns false.
Parameters:
Redefinition of:
- Auth_OpenID_OpenIDStore::removeAssociation()
- This method removes the matching association if it's found, and returns whether the association was removed or not.
void storeAssociation(
$server_url,
$association
)
|
|
This implementation does nothing.
Parameters:
|
|
$server_url: |
|
|
|
$association: |
|
Redefinition of:
- Auth_OpenID_OpenIDStore::storeAssociation()
- This method puts an Association object into storage, retrievable by server URL and handle.
void useNonce(
$server_url,
$timestamp,
$salt
)
|
|
In a system truly limited to dumb mode, nonces must all be accepted. This therefore always returns true, which makes replay attacks feasible.
Parameters:
|
|
$server_url: |
|
|
|
$timestamp: |
|
|
|
$salt: |
|
Redefinition of:
- Auth_OpenID_OpenIDStore::useNonce()
- Called when using a nonce.