1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
require_once __DIR__ . '/../OATH/OCRA.php'; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* This file is part of the tiqr project. |
7
|
|
|
* |
8
|
|
|
* The tiqr project aims to provide an open implementation for |
9
|
|
|
* authentication using mobile devices. It was initiated by |
10
|
|
|
* SURFnet and developed by Egeniq. |
11
|
|
|
* |
12
|
|
|
* More information: http://www.tiqr.org |
13
|
|
|
* |
14
|
|
|
* @author Ivo Jansch <[email protected]> |
15
|
|
|
* |
16
|
|
|
* @package tiqr |
17
|
|
|
* |
18
|
|
|
* @license New BSD License - See LICENSE file for details. |
19
|
|
|
* |
20
|
|
|
* @copyright (C) 2010-2012 SURFnet BV |
21
|
|
|
*/ |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* The implementation for the tiqr ocra service class. |
25
|
|
|
* |
26
|
|
|
* @author lineke |
27
|
|
|
* |
28
|
|
|
*/ |
29
|
|
|
class Tiqr_OcraService_Tiqr extends Tiqr_OcraService_Abstract |
30
|
|
|
{ |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @see Tiqr_OcraService_Interface::verifyResponse() |
34
|
|
|
*/ |
35
|
3 |
|
public function verifyResponse(String $response, String $userId, String $userSecret, String $challenge, String $sessionInformation): bool |
36
|
|
|
{ |
37
|
|
|
// Calculate the response. Because we have the same information as the client this should result in the same |
38
|
|
|
// response as the client calculated. |
39
|
|
|
try { |
40
|
3 |
|
$expected = OCRA::generateOCRA($this->_ocraSuite, $userSecret, "", $challenge, "", $sessionInformation, ""); |
41
|
|
|
} |
42
|
|
|
catch (Exception $e) { |
43
|
|
|
$this->logger->warning(sprintf('Error calculating OCRA response for user "%s"', $userId), array('exception'=>$e)); |
44
|
|
|
return false; |
45
|
|
|
} |
46
|
|
|
|
47
|
3 |
|
if (strlen($expected) != strlen($response)) { |
48
|
1 |
|
$this->logger->warning('verifyResponse: calculated and expected response have different lengths'); |
49
|
|
|
} |
50
|
|
|
// Use constant time compare |
51
|
3 |
|
return $this->_ocraParser->constEqual($expected, $response); |
52
|
|
|
} |
53
|
|
|
} |
54
|
|
|
|