本文整理匯總了PHP中Crypt::timingSafeCompare方法的典型用法代碼示例。如果您正苦於以下問題:PHP Crypt::timingSafeCompare方法的具體用法?PHP Crypt::timingSafeCompare怎麽用?PHP Crypt::timingSafeCompare使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Crypt
的用法示例。
在下文中一共展示了Crypt::timingSafeCompare方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: checkForPermanentLoginToken
/**
* Check if a user has a permanent login token. If so, log them in.
*
*
* @return void
*/
public function checkForPermanentLoginToken()
{
if (\Data::hasCookie(self::PERM_LOGIN_COOKIE_NAME)) {
$cookie = \Data::getCookie(self::PERM_LOGIN_COOKIE_NAME);
$p = explode('|', $cookie);
$id = array_shift($p);
$user_id = array_shift($p);
$mac = array_pop($p);
$token = join('|', $p);
$secret = \App::config('AES_KEY256');
if ($mac !== hash_hmac('sha256', $id . '|' . $user_id . '|' . $token, $secret)) {
return false;
}
//if
$LoginToken = \App\record\UserLoginToken::find(array('id' => $id, 'user_id' => $user_id), array('id,user_id,token'));
if ($LoginToken !== false && \Crypt::timingSafeCompare($LoginToken['token'], $token)) {
\Session::set($this->getSessionKey(), $user_id);
\Session::regen();
$this->user_id = $user_id;
$this->logged_in = true;
$LoginToken['last_accessed_date'] = array('raw' => 'NOW()');
$LoginToken->update();
}
//if
}
//if
}