1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-04-06 09:58:08 +02:00

Cosmetic changes.

This commit is contained in:
Jean Paul Galea 2015-07-17 23:01:36 +02:00
parent 1e2568da3c
commit 8991c2c0c4

View File

@ -250,25 +250,25 @@ if ($h != '')
}
}
/* We need to add necessary parameters not available at earlier protocols after signature is computed.
/**
* We need to add necessary parameters not available at
* earlier protocols after signature is computed.
*/
if ($protocol_version < 2.0)
{
/* We need to create a nonce manually here */
// we need to create a nonce manually here
$nonce = md5(uniqid(rand()));
$myLog->log(LOG_INFO, 'protocol version below 2.0. Created nonce ' . $nonce);
}
//// Which YK-KSM should we talk to?
//
$urls = otp2ksmurls ($otp, $client);
// which YK-KSM should we talk to?
$urls = otp2ksmurls($otp, $client);
if (!is_array($urls))
{
sendResp(S_BACKEND_ERROR, $myLog, $apiKey);
}
//// Decode OTP from input
//
// decode OTP from input
$curlopts = array();
if (array_key_exists('__YKVAL_KSM_CURL_OPTS__', $baseParams))
{
@ -280,8 +280,7 @@ if (($otpinfo = KSMdecryptOTP($urls, $myLog, $curlopts)) === FALSE)
}
$myLog->log(LOG_DEBUG, "Decrypted OTP:", $otpinfo);
//// Get Yubikey from DB
//
// get Yubikey from DB
$devId = substr($otp, 0, strlen ($otp) - TOKEN_LEN);
$yk_publicname = $devId;
$localParams = $sync->getLocalParams($yk_publicname);