diff options
author | tailor <cygnus@janrain.com> | 2006-02-14 23:55:17 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-02-14 23:55:17 +0000 |
commit | 1e6f1844a1d17bc067210dfb1a8988917c6ce8a6 (patch) | |
tree | bc489733413d4256e585d8f7f5c01d1f2549dae1 /Auth/OpenID/FileStore.php | |
parent | ecce27920ed37b53efe31d451b21c94ae90919d8 (diff) | |
download | php-openid-1e6f1844a1d17bc067210dfb1a8988917c6ce8a6.zip php-openid-1e6f1844a1d17bc067210dfb1a8988917c6ce8a6.tar.gz php-openid-1e6f1844a1d17bc067210dfb1a8988917c6ce8a6.tar.bz2 |
[project @ Moved CryptUtil functions into an Auth_OpenID_CryptUtil class.]
Diffstat (limited to 'Auth/OpenID/FileStore.php')
-rw-r--r-- | Auth/OpenID/FileStore.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/FileStore.php b/Auth/OpenID/FileStore.php index 75379f3..c682ee5 100644 --- a/Auth/OpenID/FileStore.php +++ b/Auth/OpenID/FileStore.php @@ -159,7 +159,7 @@ class Auth_OpenID_FileStore extends Auth_OpenID_OpenIDStore { return null; } - $auth_key = Auth_OpenID_randomString($this->AUTH_KEY_LEN); + $auth_key = Auth_OpenID_CryptUtil::randomString($this->AUTH_KEY_LEN); list($file_obj, $tmp) = $this->_mktemp(); |