summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/Interface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Auth/OpenID/Interface.php')
-rw-r--r--Auth/OpenID/Interface.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/Auth/OpenID/Interface.php b/Auth/OpenID/Interface.php
index ce9fa1f..bd21251 100644
--- a/Auth/OpenID/Interface.php
+++ b/Auth/OpenID/Interface.php
@@ -25,12 +25,6 @@
*/
class Auth_OpenID_OpenIDStore {
/**
- * @var integer The length of the auth key that should be returned
- * by the getAuthKey method.
- */
- var $AUTH_KEY_LEN = 20;
-
- /**
* This method puts an Association object into storage,
* retrievable by server URL and handle.
*
@@ -145,22 +139,6 @@ class Auth_OpenID_OpenIDStore {
}
/**
- * 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 {@link AUTH_KEY_LEN} bytes long.
- *
- * @return string The key. It should be {@link AUTH_KEY_LEN} bytes in
- * length, and use the full range of byte values. That is, it
- * should be treated as a lump of binary data stored in a string.
- */
- function getAuthKey()
- {
- trigger_error("Auth_OpenID_OpenIDStore::getAuthKey ".
- "not implemented", E_USER_ERROR);
- }
-
- /**
* This method must return true if the store is a dumb-mode-style
* store. Unlike all other methods in this class, this one
* provides a default implementation, which returns false.