@@ -1,100 +1,100 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | class Tiqr_AutoLoader { |
| 3 | 3 | |
| 4 | - protected static $instance; |
|
| 5 | - |
|
| 6 | - protected $tiqrPath; |
|
| 7 | - protected $qrcodePath; |
|
| 8 | - protected $zendPath; |
|
| 9 | - |
|
| 10 | - protected function __construct($options) { |
|
| 11 | - if ($options !== NULL) { |
|
| 12 | - $this->setOptions($options); |
|
| 13 | - } |
|
| 14 | - spl_autoload_register(array(__CLASS__, 'autoload')); |
|
| 15 | - } |
|
| 16 | - |
|
| 17 | - public static function getInstance($options = NULL) { |
|
| 18 | - if (null === self::$instance) { |
|
| 19 | - self::$instance = new self($options); |
|
| 20 | - } |
|
| 21 | - |
|
| 22 | - return self::$instance; |
|
| 23 | - } |
|
| 24 | - |
|
| 25 | - public static function autoload($className) { |
|
| 26 | - if($className === NULL) { |
|
| 27 | - return; |
|
| 28 | - } |
|
| 29 | - |
|
| 30 | - $self = self::getInstance(); |
|
| 31 | - |
|
| 32 | - $substr5 = substr($className, 0, 5); |
|
| 33 | - |
|
| 34 | - if ($substr5 === 'Tiqr_' || $substr5 === 'OATH_') { |
|
| 35 | - $file = $self->tiqrPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 36 | - } elseif ($className === 'QRcode') { |
|
| 37 | - $file = $self->qrcodePath . DIRECTORY_SEPARATOR . 'qrlib.php'; |
|
| 38 | - } elseif ($substr5 === 'Zend_') { |
|
| 39 | - $file = $self->zendPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 40 | - } else { |
|
| 41 | - return; |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - if (file_exists($file)) { |
|
| 45 | - require_once($file); |
|
| 46 | - } |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - public function setOptions($options) { |
|
| 50 | - if (isset($options["tiqr.path"])) { |
|
| 51 | - $tiqr_dir = $options["tiqr.path"]; |
|
| 52 | - $tiqr_path = realpath($tiqr_dir); |
|
| 53 | - } else { |
|
| 54 | - $tiqr_dir = dirname(__FILE__); |
|
| 55 | - $tiqr_path = $tiqr_dir; |
|
| 56 | - } |
|
| 57 | - if (is_dir($tiqr_path)) { |
|
| 58 | - $this->tiqrPath = $tiqr_path; |
|
| 59 | - } else { |
|
| 60 | - throw new Exception('Directory not found: ' . var_export($tiqr_dir, TRUE)); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - if (isset($options["phpqrcode.path"])) { |
|
| 64 | - $qrcode_dir = $options["phpqrcode.path"]; |
|
| 65 | - $qrcode_path = realpath($qrcode_dir); |
|
| 66 | - } else { |
|
| 67 | - $qrcode_dir = dirname(dirname(dirname(__FILE__))) . '/phpqrcode'; |
|
| 68 | - $qrcode_path = $qrcode_dir; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - if (is_dir($qrcode_path)) { |
|
| 72 | - $this->qrcodePath = $qrcode_path; |
|
| 73 | - } else { |
|
| 74 | - throw new Exception('Directory not found: ' . var_export($qrcode_dir, TRUE)); |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - if (isset($options["zend.path"])) { |
|
| 78 | - $zend_dir = $options["zend.path"]; |
|
| 79 | - $zend_path = realpath($zend_dir); |
|
| 80 | - } else { |
|
| 81 | - $zend_dir = dirname(dirname(dirname(__FILE__))) . "/zend"; |
|
| 82 | - $zend_path = $zend_dir; |
|
| 83 | - } |
|
| 84 | - if (is_dir($zend_path)) { |
|
| 85 | - $this->zendPath = $zend_path; |
|
| 86 | - } else { |
|
| 87 | - throw new Exception('Directory not found: ' . var_export($zend_dir, TRUE)); |
|
| 88 | - } |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - public function setIncludePath() { |
|
| 93 | - set_include_path(implode(PATH_SEPARATOR, array( |
|
| 94 | - $this->tiqrPath, |
|
| 95 | - $this->zendPath, |
|
| 96 | - $this->qrcodePath, |
|
| 97 | - get_include_path(), |
|
| 98 | - ))); |
|
| 99 | - } |
|
| 4 | + protected static $instance; |
|
| 5 | + |
|
| 6 | + protected $tiqrPath; |
|
| 7 | + protected $qrcodePath; |
|
| 8 | + protected $zendPath; |
|
| 9 | + |
|
| 10 | + protected function __construct($options) { |
|
| 11 | + if ($options !== NULL) { |
|
| 12 | + $this->setOptions($options); |
|
| 13 | + } |
|
| 14 | + spl_autoload_register(array(__CLASS__, 'autoload')); |
|
| 15 | + } |
|
| 16 | + |
|
| 17 | + public static function getInstance($options = NULL) { |
|
| 18 | + if (null === self::$instance) { |
|
| 19 | + self::$instance = new self($options); |
|
| 20 | + } |
|
| 21 | + |
|
| 22 | + return self::$instance; |
|
| 23 | + } |
|
| 24 | + |
|
| 25 | + public static function autoload($className) { |
|
| 26 | + if($className === NULL) { |
|
| 27 | + return; |
|
| 28 | + } |
|
| 29 | + |
|
| 30 | + $self = self::getInstance(); |
|
| 31 | + |
|
| 32 | + $substr5 = substr($className, 0, 5); |
|
| 33 | + |
|
| 34 | + if ($substr5 === 'Tiqr_' || $substr5 === 'OATH_') { |
|
| 35 | + $file = $self->tiqrPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 36 | + } elseif ($className === 'QRcode') { |
|
| 37 | + $file = $self->qrcodePath . DIRECTORY_SEPARATOR . 'qrlib.php'; |
|
| 38 | + } elseif ($substr5 === 'Zend_') { |
|
| 39 | + $file = $self->zendPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 40 | + } else { |
|
| 41 | + return; |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + if (file_exists($file)) { |
|
| 45 | + require_once($file); |
|
| 46 | + } |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + public function setOptions($options) { |
|
| 50 | + if (isset($options["tiqr.path"])) { |
|
| 51 | + $tiqr_dir = $options["tiqr.path"]; |
|
| 52 | + $tiqr_path = realpath($tiqr_dir); |
|
| 53 | + } else { |
|
| 54 | + $tiqr_dir = dirname(__FILE__); |
|
| 55 | + $tiqr_path = $tiqr_dir; |
|
| 56 | + } |
|
| 57 | + if (is_dir($tiqr_path)) { |
|
| 58 | + $this->tiqrPath = $tiqr_path; |
|
| 59 | + } else { |
|
| 60 | + throw new Exception('Directory not found: ' . var_export($tiqr_dir, TRUE)); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + if (isset($options["phpqrcode.path"])) { |
|
| 64 | + $qrcode_dir = $options["phpqrcode.path"]; |
|
| 65 | + $qrcode_path = realpath($qrcode_dir); |
|
| 66 | + } else { |
|
| 67 | + $qrcode_dir = dirname(dirname(dirname(__FILE__))) . '/phpqrcode'; |
|
| 68 | + $qrcode_path = $qrcode_dir; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + if (is_dir($qrcode_path)) { |
|
| 72 | + $this->qrcodePath = $qrcode_path; |
|
| 73 | + } else { |
|
| 74 | + throw new Exception('Directory not found: ' . var_export($qrcode_dir, TRUE)); |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + if (isset($options["zend.path"])) { |
|
| 78 | + $zend_dir = $options["zend.path"]; |
|
| 79 | + $zend_path = realpath($zend_dir); |
|
| 80 | + } else { |
|
| 81 | + $zend_dir = dirname(dirname(dirname(__FILE__))) . "/zend"; |
|
| 82 | + $zend_path = $zend_dir; |
|
| 83 | + } |
|
| 84 | + if (is_dir($zend_path)) { |
|
| 85 | + $this->zendPath = $zend_path; |
|
| 86 | + } else { |
|
| 87 | + throw new Exception('Directory not found: ' . var_export($zend_dir, TRUE)); |
|
| 88 | + } |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + public function setIncludePath() { |
|
| 93 | + set_include_path(implode(PATH_SEPARATOR, array( |
|
| 94 | + $this->tiqrPath, |
|
| 95 | + $this->zendPath, |
|
| 96 | + $this->qrcodePath, |
|
| 97 | + get_include_path(), |
|
| 98 | + ))); |
|
| 99 | + } |
|
| 100 | 100 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public static function autoload($className) { |
| 26 | - if($className === NULL) { |
|
| 26 | + if ($className === NULL) { |
|
| 27 | 27 | return; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -32,11 +32,11 @@ discard block |
||
| 32 | 32 | $substr5 = substr($className, 0, 5); |
| 33 | 33 | |
| 34 | 34 | if ($substr5 === 'Tiqr_' || $substr5 === 'OATH_') { |
| 35 | - $file = $self->tiqrPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 35 | + $file = $self->tiqrPath.DIRECTORY_SEPARATOR.str_replace('_', DIRECTORY_SEPARATOR, $className).'.php'; |
|
| 36 | 36 | } elseif ($className === 'QRcode') { |
| 37 | - $file = $self->qrcodePath . DIRECTORY_SEPARATOR . 'qrlib.php'; |
|
| 37 | + $file = $self->qrcodePath.DIRECTORY_SEPARATOR.'qrlib.php'; |
|
| 38 | 38 | } elseif ($substr5 === 'Zend_') { |
| 39 | - $file = $self->zendPath . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; |
|
| 39 | + $file = $self->zendPath.DIRECTORY_SEPARATOR.str_replace('_', DIRECTORY_SEPARATOR, $className).'.php'; |
|
| 40 | 40 | } else { |
| 41 | 41 | return; |
| 42 | 42 | } |
@@ -57,34 +57,34 @@ discard block |
||
| 57 | 57 | if (is_dir($tiqr_path)) { |
| 58 | 58 | $this->tiqrPath = $tiqr_path; |
| 59 | 59 | } else { |
| 60 | - throw new Exception('Directory not found: ' . var_export($tiqr_dir, TRUE)); |
|
| 60 | + throw new Exception('Directory not found: '.var_export($tiqr_dir, TRUE)); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | if (isset($options["phpqrcode.path"])) { |
| 64 | 64 | $qrcode_dir = $options["phpqrcode.path"]; |
| 65 | 65 | $qrcode_path = realpath($qrcode_dir); |
| 66 | 66 | } else { |
| 67 | - $qrcode_dir = dirname(dirname(dirname(__FILE__))) . '/phpqrcode'; |
|
| 67 | + $qrcode_dir = dirname(dirname(dirname(__FILE__))).'/phpqrcode'; |
|
| 68 | 68 | $qrcode_path = $qrcode_dir; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | if (is_dir($qrcode_path)) { |
| 72 | 72 | $this->qrcodePath = $qrcode_path; |
| 73 | 73 | } else { |
| 74 | - throw new Exception('Directory not found: ' . var_export($qrcode_dir, TRUE)); |
|
| 74 | + throw new Exception('Directory not found: '.var_export($qrcode_dir, TRUE)); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | if (isset($options["zend.path"])) { |
| 78 | 78 | $zend_dir = $options["zend.path"]; |
| 79 | 79 | $zend_path = realpath($zend_dir); |
| 80 | 80 | } else { |
| 81 | - $zend_dir = dirname(dirname(dirname(__FILE__))) . "/zend"; |
|
| 81 | + $zend_dir = dirname(dirname(dirname(__FILE__)))."/zend"; |
|
| 82 | 82 | $zend_path = $zend_dir; |
| 83 | 83 | } |
| 84 | 84 | if (is_dir($zend_path)) { |
| 85 | 85 | $this->zendPath = $zend_path; |
| 86 | 86 | } else { |
| 87 | - throw new Exception('Directory not found: ' . var_export($zend_dir, TRUE)); |
|
| 87 | + throw new Exception('Directory not found: '.var_export($zend_dir, TRUE)); |
|
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
@@ -4,241 +4,241 @@ |
||
| 4 | 4 | |
| 5 | 5 | class OATH_OCRAParser { |
| 6 | 6 | |
| 7 | - private $key = NULL; |
|
| 8 | - |
|
| 9 | - private $OCRASuite = NULL; |
|
| 10 | - |
|
| 11 | - private $OCRAVersion = NULL; |
|
| 12 | - |
|
| 13 | - private $CryptoFunctionType = NULL; |
|
| 14 | - private $CryptoFunctionHash = NULL; |
|
| 15 | - private $CryptoFunctionHashLength = NULL; |
|
| 16 | - private $CryptoFunctionTruncation = NULL; |
|
| 17 | - |
|
| 18 | - private $C = FALSE; |
|
| 19 | - private $Q = FALSE; |
|
| 20 | - private $QType = 'N'; |
|
| 21 | - private $QLength = 8; |
|
| 22 | - |
|
| 23 | - private $P = FALSE; |
|
| 24 | - private $PType = 'SHA1'; |
|
| 25 | - private $PLength = 20; |
|
| 26 | - |
|
| 27 | - private $S = FALSE; |
|
| 28 | - private $SLength = 64; |
|
| 29 | - |
|
| 30 | - private $T = FALSE; |
|
| 31 | - private $TLength = 60; // 1M |
|
| 32 | - private $TPeriods = array('H' => 3600, 'M' => 60, 'S' => 1); |
|
| 33 | - |
|
| 34 | - private $supportedHashFunctions = array('SHA1' => 20, 'SHA256' => 32, 'SHA512' => 64); |
|
| 35 | - |
|
| 36 | - |
|
| 37 | - public function __construct($ocraSuite) { |
|
| 38 | - $this->parseOCRASuite($ocraSuite); |
|
| 39 | - } |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * Inspired by https://github.com/bdauvergne/python-oath |
|
| 43 | - */ |
|
| 44 | - private function parseOCRASuite($ocraSuite) { |
|
| 45 | - if (!is_string($ocraSuite)) { |
|
| 46 | - throw new Exception('OCRASuite not in string format: ' . var_export($ocraSuite, TRUE)); |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - $ocraSuite = strtoupper($ocraSuite); |
|
| 50 | - $this->OCRASuite = $ocraSuite; |
|
| 51 | - |
|
| 52 | - $s = explode(':', $ocraSuite); |
|
| 53 | - if (count($s) != 3) { |
|
| 54 | - throw new Exception('Invalid OCRASuite format: ' . var_export($ocraSuite, TRUE)); |
|
| 55 | - } |
|
| 56 | - |
|
| 57 | - $algo = explode('-', $s[0]); |
|
| 58 | - if (count($algo) != 2) { |
|
| 59 | - throw new Exception('Invalid OCRA version: ' . var_export($s[0], TRUE)); |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - if ($algo[0] !== 'OCRA') { |
|
| 63 | - throw new Exception('Unsupported OCRA algorithm: ' . var_export($algo[0], TRUE)); |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - if ($algo[1] !== '1') { |
|
| 67 | - throw new Exception('Unsupported OCRA version: ' . var_export($algo[1], TRUE)); |
|
| 68 | - } |
|
| 69 | - $this->OCRAVersion = $algo[1]; |
|
| 70 | - |
|
| 71 | - $cf = explode('-', $s[1]); |
|
| 72 | - if (count($cf) != 3) { |
|
| 73 | - throw new Exception('Invalid OCRA suite crypto function: ' . var_export($s[1], TRUE)); |
|
| 74 | - } |
|
| 75 | - |
|
| 76 | - if ($cf[0] !== 'HOTP') { |
|
| 77 | - throw new Exception('Unsupported OCRA suite crypto function: ' . var_export($cf[0], TRUE)); |
|
| 78 | - } |
|
| 79 | - $this->CryptoFunctionType = $cf[0]; |
|
| 80 | - |
|
| 81 | - if (!array_key_exists($cf[1], $this->supportedHashFunctions)) { |
|
| 82 | - throw new Exception('Unsupported hash function in OCRA suite crypto function: ' . var_export($cf[1], TRUE)); |
|
| 83 | - } |
|
| 84 | - $this->CryptoFunctionHash = $cf[1]; |
|
| 85 | - $this->CryptoFunctionHashLength = $this->supportedHashFunctions[$cf[1]]; |
|
| 86 | - |
|
| 87 | - if (!preg_match('/^\d+$/', $cf[2]) || (($cf[2] < 4 || $cf[2] > 10) && $cf[2] != 0)) { |
|
| 88 | - throw new Exception('Invalid OCRA suite crypto function truncation length: ' . var_export($cf[2], TRUE)); |
|
| 89 | - } |
|
| 90 | - $this->CryptoFunctionTruncation = intval($cf[2]); |
|
| 91 | - |
|
| 92 | - $di = explode('-', $s[2]); |
|
| 93 | - if (count($cf) == 0) { |
|
| 94 | - throw new Exception('Invalid OCRA suite data input: ' . var_export($s[2], TRUE)); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - $data_input = array(); |
|
| 98 | - foreach($di as $elem) { |
|
| 99 | - $letter = $elem[0]; |
|
| 100 | - if (array_key_exists($letter, $data_input)) { |
|
| 101 | - throw new Exception('Duplicate field in OCRA suite data input: ' . var_export($elem, TRUE)); |
|
| 102 | - } |
|
| 103 | - $data_input[$letter] = 1; |
|
| 104 | - |
|
| 105 | - if ($letter === 'C' && strlen($elem) == 1) { |
|
| 106 | - $this->C = TRUE; |
|
| 107 | - } elseif ($letter === 'Q') { |
|
| 108 | - if (strlen($elem) == 1) { |
|
| 109 | - $this->Q = TRUE; |
|
| 110 | - } elseif (preg_match('/^Q([AHN])(\d+)$/', $elem, $match)) { |
|
| 111 | - $q_len = intval($match[2]); |
|
| 112 | - if ($q_len < 4 || $q_len > 64) { |
|
| 113 | - throw new Exception('Invalid OCRA suite data input question length: ' . var_export($q_len, TRUE)); |
|
| 114 | - } |
|
| 115 | - $this->Q = TRUE; |
|
| 116 | - $this->QType = $match[1]; |
|
| 117 | - $this->QLength = $q_len; |
|
| 118 | - } else { |
|
| 119 | - throw new Exception('Invalid OCRA suite data input question: ' . var_export($elem, TRUE)); |
|
| 120 | - } |
|
| 121 | - } elseif ($letter === 'P') { |
|
| 122 | - if (strlen($elem) == 1) { |
|
| 123 | - $this->P = TRUE; |
|
| 124 | - } else { |
|
| 125 | - $p_algo = substr($elem, 1); |
|
| 126 | - if (!array_key_exists($p_algo, $this->supportedHashFunctions)) { |
|
| 127 | - throw new Exception('Unsupported OCRA suite PIN hash function: ' . var_export($elem, TRUE)); |
|
| 128 | - } |
|
| 129 | - $this->P = TRUE; |
|
| 130 | - $this->PType = $p_algo; |
|
| 131 | - $this->PLength = $this->supportedHashFunctions[$p_algo]; |
|
| 132 | - } |
|
| 133 | - } elseif ($letter === 'S') { |
|
| 134 | - if (strlen($elem) == 1) { |
|
| 135 | - $this->S = TRUE; |
|
| 136 | - } elseif (preg_match('/^S(\d+)$/', $elem, $match)) { |
|
| 137 | - $s_len = intval($match[1]); |
|
| 138 | - if ($s_len <= 0 || $s_len > 512) { |
|
| 139 | - throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($s_len, TRUE)); |
|
| 140 | - } |
|
| 141 | - |
|
| 142 | - $this->S = TRUE; |
|
| 143 | - $this->SLength = $s_len; |
|
| 144 | - } else { |
|
| 145 | - throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($elem, TRUE)); |
|
| 146 | - } |
|
| 147 | - } elseif ($letter === 'T') { |
|
| 148 | - if (strlen($elem) == 1) { |
|
| 149 | - $this->T = TRUE; |
|
| 150 | - } elseif (preg_match('/^T(\d+[HMS])+$/', $elem)) { |
|
| 151 | - preg_match_all('/(\d+)([HMS])/', $elem, $match); |
|
| 152 | - |
|
| 153 | - if (count($match[1]) !== count(array_unique($match[2]))) { |
|
| 154 | - throw new Exception('Duplicate definitions in OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - $length = 0; |
|
| 158 | - for ($i = 0; $i < count($match[1]); $i++) { |
|
| 159 | - $length += intval($match[1][$i]) * $this->TPeriods[$match[2][$i]]; |
|
| 160 | - } |
|
| 161 | - if ($length <= 0) { |
|
| 162 | - throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - $this->T = TRUE; |
|
| 166 | - $this->TLength = $length; |
|
| 167 | - } else { |
|
| 168 | - throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 169 | - } |
|
| 170 | - } else { |
|
| 171 | - throw new Exception('Unsupported OCRA suite data input field: ' . var_export($elem, TRUE)); |
|
| 172 | - } |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - if (!$this->Q) { |
|
| 176 | - throw new Exception('OCRA suite data input question not defined: ' . var_export($s[2], TRUE)); |
|
| 177 | - } |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - public function generateChallenge() { |
|
| 181 | - $q_length = $this->QLength; |
|
| 182 | - $q_type = $this->QType; |
|
| 7 | + private $key = NULL; |
|
| 8 | + |
|
| 9 | + private $OCRASuite = NULL; |
|
| 10 | + |
|
| 11 | + private $OCRAVersion = NULL; |
|
| 12 | + |
|
| 13 | + private $CryptoFunctionType = NULL; |
|
| 14 | + private $CryptoFunctionHash = NULL; |
|
| 15 | + private $CryptoFunctionHashLength = NULL; |
|
| 16 | + private $CryptoFunctionTruncation = NULL; |
|
| 17 | + |
|
| 18 | + private $C = FALSE; |
|
| 19 | + private $Q = FALSE; |
|
| 20 | + private $QType = 'N'; |
|
| 21 | + private $QLength = 8; |
|
| 22 | + |
|
| 23 | + private $P = FALSE; |
|
| 24 | + private $PType = 'SHA1'; |
|
| 25 | + private $PLength = 20; |
|
| 26 | + |
|
| 27 | + private $S = FALSE; |
|
| 28 | + private $SLength = 64; |
|
| 29 | + |
|
| 30 | + private $T = FALSE; |
|
| 31 | + private $TLength = 60; // 1M |
|
| 32 | + private $TPeriods = array('H' => 3600, 'M' => 60, 'S' => 1); |
|
| 33 | + |
|
| 34 | + private $supportedHashFunctions = array('SHA1' => 20, 'SHA256' => 32, 'SHA512' => 64); |
|
| 35 | + |
|
| 36 | + |
|
| 37 | + public function __construct($ocraSuite) { |
|
| 38 | + $this->parseOCRASuite($ocraSuite); |
|
| 39 | + } |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * Inspired by https://github.com/bdauvergne/python-oath |
|
| 43 | + */ |
|
| 44 | + private function parseOCRASuite($ocraSuite) { |
|
| 45 | + if (!is_string($ocraSuite)) { |
|
| 46 | + throw new Exception('OCRASuite not in string format: ' . var_export($ocraSuite, TRUE)); |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + $ocraSuite = strtoupper($ocraSuite); |
|
| 50 | + $this->OCRASuite = $ocraSuite; |
|
| 51 | + |
|
| 52 | + $s = explode(':', $ocraSuite); |
|
| 53 | + if (count($s) != 3) { |
|
| 54 | + throw new Exception('Invalid OCRASuite format: ' . var_export($ocraSuite, TRUE)); |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + $algo = explode('-', $s[0]); |
|
| 58 | + if (count($algo) != 2) { |
|
| 59 | + throw new Exception('Invalid OCRA version: ' . var_export($s[0], TRUE)); |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + if ($algo[0] !== 'OCRA') { |
|
| 63 | + throw new Exception('Unsupported OCRA algorithm: ' . var_export($algo[0], TRUE)); |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + if ($algo[1] !== '1') { |
|
| 67 | + throw new Exception('Unsupported OCRA version: ' . var_export($algo[1], TRUE)); |
|
| 68 | + } |
|
| 69 | + $this->OCRAVersion = $algo[1]; |
|
| 70 | + |
|
| 71 | + $cf = explode('-', $s[1]); |
|
| 72 | + if (count($cf) != 3) { |
|
| 73 | + throw new Exception('Invalid OCRA suite crypto function: ' . var_export($s[1], TRUE)); |
|
| 74 | + } |
|
| 75 | + |
|
| 76 | + if ($cf[0] !== 'HOTP') { |
|
| 77 | + throw new Exception('Unsupported OCRA suite crypto function: ' . var_export($cf[0], TRUE)); |
|
| 78 | + } |
|
| 79 | + $this->CryptoFunctionType = $cf[0]; |
|
| 80 | + |
|
| 81 | + if (!array_key_exists($cf[1], $this->supportedHashFunctions)) { |
|
| 82 | + throw new Exception('Unsupported hash function in OCRA suite crypto function: ' . var_export($cf[1], TRUE)); |
|
| 83 | + } |
|
| 84 | + $this->CryptoFunctionHash = $cf[1]; |
|
| 85 | + $this->CryptoFunctionHashLength = $this->supportedHashFunctions[$cf[1]]; |
|
| 86 | + |
|
| 87 | + if (!preg_match('/^\d+$/', $cf[2]) || (($cf[2] < 4 || $cf[2] > 10) && $cf[2] != 0)) { |
|
| 88 | + throw new Exception('Invalid OCRA suite crypto function truncation length: ' . var_export($cf[2], TRUE)); |
|
| 89 | + } |
|
| 90 | + $this->CryptoFunctionTruncation = intval($cf[2]); |
|
| 91 | + |
|
| 92 | + $di = explode('-', $s[2]); |
|
| 93 | + if (count($cf) == 0) { |
|
| 94 | + throw new Exception('Invalid OCRA suite data input: ' . var_export($s[2], TRUE)); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + $data_input = array(); |
|
| 98 | + foreach($di as $elem) { |
|
| 99 | + $letter = $elem[0]; |
|
| 100 | + if (array_key_exists($letter, $data_input)) { |
|
| 101 | + throw new Exception('Duplicate field in OCRA suite data input: ' . var_export($elem, TRUE)); |
|
| 102 | + } |
|
| 103 | + $data_input[$letter] = 1; |
|
| 104 | + |
|
| 105 | + if ($letter === 'C' && strlen($elem) == 1) { |
|
| 106 | + $this->C = TRUE; |
|
| 107 | + } elseif ($letter === 'Q') { |
|
| 108 | + if (strlen($elem) == 1) { |
|
| 109 | + $this->Q = TRUE; |
|
| 110 | + } elseif (preg_match('/^Q([AHN])(\d+)$/', $elem, $match)) { |
|
| 111 | + $q_len = intval($match[2]); |
|
| 112 | + if ($q_len < 4 || $q_len > 64) { |
|
| 113 | + throw new Exception('Invalid OCRA suite data input question length: ' . var_export($q_len, TRUE)); |
|
| 114 | + } |
|
| 115 | + $this->Q = TRUE; |
|
| 116 | + $this->QType = $match[1]; |
|
| 117 | + $this->QLength = $q_len; |
|
| 118 | + } else { |
|
| 119 | + throw new Exception('Invalid OCRA suite data input question: ' . var_export($elem, TRUE)); |
|
| 120 | + } |
|
| 121 | + } elseif ($letter === 'P') { |
|
| 122 | + if (strlen($elem) == 1) { |
|
| 123 | + $this->P = TRUE; |
|
| 124 | + } else { |
|
| 125 | + $p_algo = substr($elem, 1); |
|
| 126 | + if (!array_key_exists($p_algo, $this->supportedHashFunctions)) { |
|
| 127 | + throw new Exception('Unsupported OCRA suite PIN hash function: ' . var_export($elem, TRUE)); |
|
| 128 | + } |
|
| 129 | + $this->P = TRUE; |
|
| 130 | + $this->PType = $p_algo; |
|
| 131 | + $this->PLength = $this->supportedHashFunctions[$p_algo]; |
|
| 132 | + } |
|
| 133 | + } elseif ($letter === 'S') { |
|
| 134 | + if (strlen($elem) == 1) { |
|
| 135 | + $this->S = TRUE; |
|
| 136 | + } elseif (preg_match('/^S(\d+)$/', $elem, $match)) { |
|
| 137 | + $s_len = intval($match[1]); |
|
| 138 | + if ($s_len <= 0 || $s_len > 512) { |
|
| 139 | + throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($s_len, TRUE)); |
|
| 140 | + } |
|
| 141 | + |
|
| 142 | + $this->S = TRUE; |
|
| 143 | + $this->SLength = $s_len; |
|
| 144 | + } else { |
|
| 145 | + throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($elem, TRUE)); |
|
| 146 | + } |
|
| 147 | + } elseif ($letter === 'T') { |
|
| 148 | + if (strlen($elem) == 1) { |
|
| 149 | + $this->T = TRUE; |
|
| 150 | + } elseif (preg_match('/^T(\d+[HMS])+$/', $elem)) { |
|
| 151 | + preg_match_all('/(\d+)([HMS])/', $elem, $match); |
|
| 152 | + |
|
| 153 | + if (count($match[1]) !== count(array_unique($match[2]))) { |
|
| 154 | + throw new Exception('Duplicate definitions in OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + $length = 0; |
|
| 158 | + for ($i = 0; $i < count($match[1]); $i++) { |
|
| 159 | + $length += intval($match[1][$i]) * $this->TPeriods[$match[2][$i]]; |
|
| 160 | + } |
|
| 161 | + if ($length <= 0) { |
|
| 162 | + throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + $this->T = TRUE; |
|
| 166 | + $this->TLength = $length; |
|
| 167 | + } else { |
|
| 168 | + throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 169 | + } |
|
| 170 | + } else { |
|
| 171 | + throw new Exception('Unsupported OCRA suite data input field: ' . var_export($elem, TRUE)); |
|
| 172 | + } |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + if (!$this->Q) { |
|
| 176 | + throw new Exception('OCRA suite data input question not defined: ' . var_export($s[2], TRUE)); |
|
| 177 | + } |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + public function generateChallenge() { |
|
| 181 | + $q_length = $this->QLength; |
|
| 182 | + $q_type = $this->QType; |
|
| 183 | 183 | |
| 184 | 184 | $bytes = Tiqr_Random::randomBytes($q_length); |
| 185 | 185 | |
| 186 | - switch($q_type) { |
|
| 187 | - case 'A': |
|
| 188 | - $challenge = base64_encode($bytes); |
|
| 189 | - $tr = implode("", unpack('H*', $bytes)); |
|
| 190 | - $challenge = rtrim(strtr($challenge, '+/', $tr), '='); |
|
| 191 | - break; |
|
| 192 | - case 'H': |
|
| 193 | - $challenge = implode("", unpack('H*', $bytes)); |
|
| 194 | - break; |
|
| 195 | - case 'N': |
|
| 196 | - $challenge = implode("", unpack('N*', $bytes)); |
|
| 197 | - break; |
|
| 198 | - default: |
|
| 199 | - throw new Exception('Unsupported OCRASuite challenge type: ' . var_export($q_type, TRUE)); |
|
| 200 | - break; |
|
| 201 | - } |
|
| 202 | - |
|
| 203 | - $challenge = substr($challenge, 0, $q_length); |
|
| 204 | - |
|
| 205 | - return $challenge; |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - |
|
| 209 | - public function generateSessionInformation() { |
|
| 210 | - if (!$this->S) { |
|
| 211 | - throw new Exception('Session information not defined in OCRASuite: ' . var_export($this->OCRASuite, TRUE)); |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - $s_length = $this->SLength; |
|
| 186 | + switch($q_type) { |
|
| 187 | + case 'A': |
|
| 188 | + $challenge = base64_encode($bytes); |
|
| 189 | + $tr = implode("", unpack('H*', $bytes)); |
|
| 190 | + $challenge = rtrim(strtr($challenge, '+/', $tr), '='); |
|
| 191 | + break; |
|
| 192 | + case 'H': |
|
| 193 | + $challenge = implode("", unpack('H*', $bytes)); |
|
| 194 | + break; |
|
| 195 | + case 'N': |
|
| 196 | + $challenge = implode("", unpack('N*', $bytes)); |
|
| 197 | + break; |
|
| 198 | + default: |
|
| 199 | + throw new Exception('Unsupported OCRASuite challenge type: ' . var_export($q_type, TRUE)); |
|
| 200 | + break; |
|
| 201 | + } |
|
| 202 | + |
|
| 203 | + $challenge = substr($challenge, 0, $q_length); |
|
| 204 | + |
|
| 205 | + return $challenge; |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + |
|
| 209 | + public function generateSessionInformation() { |
|
| 210 | + if (!$this->S) { |
|
| 211 | + throw new Exception('Session information not defined in OCRASuite: ' . var_export($this->OCRASuite, TRUE)); |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + $s_length = $this->SLength; |
|
| 215 | 215 | $bytes = Tiqr_Random::randomBytes($s_length); |
| 216 | 216 | |
| 217 | - // The OCRA spec doesn't specify that the session data should be hexadecimal. |
|
| 218 | - // However the reference implementation in the RFC does treat it as hex. |
|
| 219 | - $session = bin2hex($bytes); |
|
| 217 | + // The OCRA spec doesn't specify that the session data should be hexadecimal. |
|
| 218 | + // However the reference implementation in the RFC does treat it as hex. |
|
| 219 | + $session = bin2hex($bytes); |
|
| 220 | 220 | |
| 221 | - $session = substr($session, 0, $s_length); |
|
| 221 | + $session = substr($session, 0, $s_length); |
|
| 222 | 222 | |
| 223 | - return $session; |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - |
|
| 227 | - /** |
|
| 228 | - * Constant time string comparison, see http://codahale.com/a-lesson-in-timing-attacks/ |
|
| 229 | - */ |
|
| 230 | - public static function constEqual($s1, $s2) { |
|
| 231 | - if (strlen($s1) != strlen($s2)) { |
|
| 232 | - return FALSE; |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - $result = TRUE; |
|
| 236 | - $length = strlen($s1); |
|
| 237 | - for ($i = 0; $i < $length; $i++) { |
|
| 238 | - $result &= ($s1[$i] == $s2[$i]); |
|
| 239 | - } |
|
| 240 | - |
|
| 241 | - return (boolean)$result; |
|
| 242 | - } |
|
| 223 | + return $session; |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + |
|
| 227 | + /** |
|
| 228 | + * Constant time string comparison, see http://codahale.com/a-lesson-in-timing-attacks/ |
|
| 229 | + */ |
|
| 230 | + public static function constEqual($s1, $s2) { |
|
| 231 | + if (strlen($s1) != strlen($s2)) { |
|
| 232 | + return FALSE; |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + $result = TRUE; |
|
| 236 | + $length = strlen($s1); |
|
| 237 | + for ($i = 0; $i < $length; $i++) { |
|
| 238 | + $result &= ($s1[$i] == $s2[$i]); |
|
| 239 | + } |
|
| 240 | + |
|
| 241 | + return (boolean)$result; |
|
| 242 | + } |
|
| 243 | 243 | |
| 244 | 244 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once ( __DIR__ . "/../Tiqr/Random.php"); |
|
| 3 | +require_once (__DIR__."/../Tiqr/Random.php"); |
|
| 4 | 4 | |
| 5 | 5 | class OATH_OCRAParser { |
| 6 | 6 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | private function parseOCRASuite($ocraSuite) { |
| 45 | 45 | if (!is_string($ocraSuite)) { |
| 46 | - throw new Exception('OCRASuite not in string format: ' . var_export($ocraSuite, TRUE)); |
|
| 46 | + throw new Exception('OCRASuite not in string format: '.var_export($ocraSuite, TRUE)); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | $ocraSuite = strtoupper($ocraSuite); |
@@ -51,54 +51,54 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | $s = explode(':', $ocraSuite); |
| 53 | 53 | if (count($s) != 3) { |
| 54 | - throw new Exception('Invalid OCRASuite format: ' . var_export($ocraSuite, TRUE)); |
|
| 54 | + throw new Exception('Invalid OCRASuite format: '.var_export($ocraSuite, TRUE)); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | $algo = explode('-', $s[0]); |
| 58 | 58 | if (count($algo) != 2) { |
| 59 | - throw new Exception('Invalid OCRA version: ' . var_export($s[0], TRUE)); |
|
| 59 | + throw new Exception('Invalid OCRA version: '.var_export($s[0], TRUE)); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | if ($algo[0] !== 'OCRA') { |
| 63 | - throw new Exception('Unsupported OCRA algorithm: ' . var_export($algo[0], TRUE)); |
|
| 63 | + throw new Exception('Unsupported OCRA algorithm: '.var_export($algo[0], TRUE)); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | if ($algo[1] !== '1') { |
| 67 | - throw new Exception('Unsupported OCRA version: ' . var_export($algo[1], TRUE)); |
|
| 67 | + throw new Exception('Unsupported OCRA version: '.var_export($algo[1], TRUE)); |
|
| 68 | 68 | } |
| 69 | 69 | $this->OCRAVersion = $algo[1]; |
| 70 | 70 | |
| 71 | 71 | $cf = explode('-', $s[1]); |
| 72 | 72 | if (count($cf) != 3) { |
| 73 | - throw new Exception('Invalid OCRA suite crypto function: ' . var_export($s[1], TRUE)); |
|
| 73 | + throw new Exception('Invalid OCRA suite crypto function: '.var_export($s[1], TRUE)); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | if ($cf[0] !== 'HOTP') { |
| 77 | - throw new Exception('Unsupported OCRA suite crypto function: ' . var_export($cf[0], TRUE)); |
|
| 77 | + throw new Exception('Unsupported OCRA suite crypto function: '.var_export($cf[0], TRUE)); |
|
| 78 | 78 | } |
| 79 | 79 | $this->CryptoFunctionType = $cf[0]; |
| 80 | 80 | |
| 81 | 81 | if (!array_key_exists($cf[1], $this->supportedHashFunctions)) { |
| 82 | - throw new Exception('Unsupported hash function in OCRA suite crypto function: ' . var_export($cf[1], TRUE)); |
|
| 82 | + throw new Exception('Unsupported hash function in OCRA suite crypto function: '.var_export($cf[1], TRUE)); |
|
| 83 | 83 | } |
| 84 | 84 | $this->CryptoFunctionHash = $cf[1]; |
| 85 | 85 | $this->CryptoFunctionHashLength = $this->supportedHashFunctions[$cf[1]]; |
| 86 | 86 | |
| 87 | 87 | if (!preg_match('/^\d+$/', $cf[2]) || (($cf[2] < 4 || $cf[2] > 10) && $cf[2] != 0)) { |
| 88 | - throw new Exception('Invalid OCRA suite crypto function truncation length: ' . var_export($cf[2], TRUE)); |
|
| 88 | + throw new Exception('Invalid OCRA suite crypto function truncation length: '.var_export($cf[2], TRUE)); |
|
| 89 | 89 | } |
| 90 | 90 | $this->CryptoFunctionTruncation = intval($cf[2]); |
| 91 | 91 | |
| 92 | 92 | $di = explode('-', $s[2]); |
| 93 | 93 | if (count($cf) == 0) { |
| 94 | - throw new Exception('Invalid OCRA suite data input: ' . var_export($s[2], TRUE)); |
|
| 94 | + throw new Exception('Invalid OCRA suite data input: '.var_export($s[2], TRUE)); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | $data_input = array(); |
| 98 | - foreach($di as $elem) { |
|
| 98 | + foreach ($di as $elem) { |
|
| 99 | 99 | $letter = $elem[0]; |
| 100 | 100 | if (array_key_exists($letter, $data_input)) { |
| 101 | - throw new Exception('Duplicate field in OCRA suite data input: ' . var_export($elem, TRUE)); |
|
| 101 | + throw new Exception('Duplicate field in OCRA suite data input: '.var_export($elem, TRUE)); |
|
| 102 | 102 | } |
| 103 | 103 | $data_input[$letter] = 1; |
| 104 | 104 | |
@@ -110,13 +110,13 @@ discard block |
||
| 110 | 110 | } elseif (preg_match('/^Q([AHN])(\d+)$/', $elem, $match)) { |
| 111 | 111 | $q_len = intval($match[2]); |
| 112 | 112 | if ($q_len < 4 || $q_len > 64) { |
| 113 | - throw new Exception('Invalid OCRA suite data input question length: ' . var_export($q_len, TRUE)); |
|
| 113 | + throw new Exception('Invalid OCRA suite data input question length: '.var_export($q_len, TRUE)); |
|
| 114 | 114 | } |
| 115 | 115 | $this->Q = TRUE; |
| 116 | 116 | $this->QType = $match[1]; |
| 117 | 117 | $this->QLength = $q_len; |
| 118 | 118 | } else { |
| 119 | - throw new Exception('Invalid OCRA suite data input question: ' . var_export($elem, TRUE)); |
|
| 119 | + throw new Exception('Invalid OCRA suite data input question: '.var_export($elem, TRUE)); |
|
| 120 | 120 | } |
| 121 | 121 | } elseif ($letter === 'P') { |
| 122 | 122 | if (strlen($elem) == 1) { |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | } else { |
| 125 | 125 | $p_algo = substr($elem, 1); |
| 126 | 126 | if (!array_key_exists($p_algo, $this->supportedHashFunctions)) { |
| 127 | - throw new Exception('Unsupported OCRA suite PIN hash function: ' . var_export($elem, TRUE)); |
|
| 127 | + throw new Exception('Unsupported OCRA suite PIN hash function: '.var_export($elem, TRUE)); |
|
| 128 | 128 | } |
| 129 | 129 | $this->P = TRUE; |
| 130 | 130 | $this->PType = $p_algo; |
@@ -136,13 +136,13 @@ discard block |
||
| 136 | 136 | } elseif (preg_match('/^S(\d+)$/', $elem, $match)) { |
| 137 | 137 | $s_len = intval($match[1]); |
| 138 | 138 | if ($s_len <= 0 || $s_len > 512) { |
| 139 | - throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($s_len, TRUE)); |
|
| 139 | + throw new Exception('Invalid OCRA suite data input session information length: '.var_export($s_len, TRUE)); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | $this->S = TRUE; |
| 143 | 143 | $this->SLength = $s_len; |
| 144 | 144 | } else { |
| 145 | - throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($elem, TRUE)); |
|
| 145 | + throw new Exception('Invalid OCRA suite data input session information length: '.var_export($elem, TRUE)); |
|
| 146 | 146 | } |
| 147 | 147 | } elseif ($letter === 'T') { |
| 148 | 148 | if (strlen($elem) == 1) { |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | preg_match_all('/(\d+)([HMS])/', $elem, $match); |
| 152 | 152 | |
| 153 | 153 | if (count($match[1]) !== count(array_unique($match[2]))) { |
| 154 | - throw new Exception('Duplicate definitions in OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 154 | + throw new Exception('Duplicate definitions in OCRA suite data input timestamp: '.var_export($elem, TRUE)); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | $length = 0; |
@@ -159,21 +159,21 @@ discard block |
||
| 159 | 159 | $length += intval($match[1][$i]) * $this->TPeriods[$match[2][$i]]; |
| 160 | 160 | } |
| 161 | 161 | if ($length <= 0) { |
| 162 | - throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 162 | + throw new Exception('Invalid OCRA suite data input timestamp: '.var_export($elem, TRUE)); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | $this->T = TRUE; |
| 166 | 166 | $this->TLength = $length; |
| 167 | 167 | } else { |
| 168 | - throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE)); |
|
| 168 | + throw new Exception('Invalid OCRA suite data input timestamp: '.var_export($elem, TRUE)); |
|
| 169 | 169 | } |
| 170 | 170 | } else { |
| 171 | - throw new Exception('Unsupported OCRA suite data input field: ' . var_export($elem, TRUE)); |
|
| 171 | + throw new Exception('Unsupported OCRA suite data input field: '.var_export($elem, TRUE)); |
|
| 172 | 172 | } |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | if (!$this->Q) { |
| 176 | - throw new Exception('OCRA suite data input question not defined: ' . var_export($s[2], TRUE)); |
|
| 176 | + throw new Exception('OCRA suite data input question not defined: '.var_export($s[2], TRUE)); |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | |
| 184 | 184 | $bytes = Tiqr_Random::randomBytes($q_length); |
| 185 | 185 | |
| 186 | - switch($q_type) { |
|
| 186 | + switch ($q_type) { |
|
| 187 | 187 | case 'A': |
| 188 | 188 | $challenge = base64_encode($bytes); |
| 189 | 189 | $tr = implode("", unpack('H*', $bytes)); |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | $challenge = implode("", unpack('N*', $bytes)); |
| 197 | 197 | break; |
| 198 | 198 | default: |
| 199 | - throw new Exception('Unsupported OCRASuite challenge type: ' . var_export($q_type, TRUE)); |
|
| 199 | + throw new Exception('Unsupported OCRASuite challenge type: '.var_export($q_type, TRUE)); |
|
| 200 | 200 | break; |
| 201 | 201 | } |
| 202 | 202 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | |
| 209 | 209 | public function generateSessionInformation() { |
| 210 | 210 | if (!$this->S) { |
| 211 | - throw new Exception('Session information not defined in OCRASuite: ' . var_export($this->OCRASuite, TRUE)); |
|
| 211 | + throw new Exception('Session information not defined in OCRASuite: '.var_export($this->OCRASuite, TRUE)); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | $s_length = $this->SLength; |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | $result &= ($s1[$i] == $s2[$i]); |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - return (boolean)$result; |
|
| 241 | + return (boolean) $result; |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | } |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | public static function randomBytes($length) |
| 40 | 40 | { |
| 41 | 41 | // Get $length cryptographically secure pseudo-random bytes |
| 42 | - $rnd=\random_bytes($length); |
|
| 42 | + $rnd = \random_bytes($length); |
|
| 43 | 43 | |
| 44 | 44 | if (strlen($rnd) !== $length) { |
| 45 | 45 | throw new Exception("random_bytes did not return the requested number of bytes"); |
@@ -41,15 +41,15 @@ |
||
| 41 | 41 | { |
| 42 | 42 | $url = $this->_options["url"]."?appId=".$this->_options["appid"]; |
| 43 | 43 | |
| 44 | - $url.= "¬ificationToken=".$notificationToken; |
|
| 44 | + $url .= "¬ificationToken=".$notificationToken; |
|
| 45 | 45 | |
| 46 | 46 | $output = file_get_contents($url); |
| 47 | - if (stripos($output, "not found")!==false) { |
|
| 47 | + if (stripos($output, "not found") !== false) { |
|
| 48 | 48 | $this->logger->error('Token Exchange failed and responded with: not found', ['full output' => $output]); |
| 49 | 49 | return false; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - if (stripos($output, "error")!==false) { |
|
| 52 | + if (stripos($output, "error") !== false) { |
|
| 53 | 53 | $this->logger->error('Token Exchange failed and responded with: error', ['full output' => $output]); |
| 54 | 54 | return false; |
| 55 | 55 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * the Tiqr_DeviceStorage factory will call this for you. |
| 59 | 59 | * @param array $options The options for the s |
| 60 | 60 | */ |
| 61 | - public function __construct($options=array(), LoggerInterface $logger) |
|
| 61 | + public function __construct($options = array(), LoggerInterface $logger) |
|
| 62 | 62 | { |
| 63 | 63 | $this->_options = $options; |
| 64 | 64 | $this->logger = $logger; |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | * The default configuration |
| 52 | 52 | */ |
| 53 | 53 | const DEFAULT_HOST = '127.0.0.1'; |
| 54 | - const DEFAULT_PORT = 11211; |
|
| 54 | + const DEFAULT_PORT = 11211; |
|
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * Get the prefix to use for all keys in memcache. |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | * (non-PHPdoc) |
| 103 | 103 | * @see library/tiqr/Tiqr/StateStorage/Tiqr_StateStorage_Abstract::setValue() |
| 104 | 104 | */ |
| 105 | - public function setValue($key, $value, $expire=0) |
|
| 105 | + public function setValue($key, $value, $expire = 0) |
|
| 106 | 106 | { |
| 107 | 107 | $key = $this->_getKeyPrefix().$key; |
| 108 | 108 | |
@@ -39,8 +39,8 @@ discard block |
||
| 39 | 39 | public function setValue($key, $value, $expire=0) |
| 40 | 40 | { |
| 41 | 41 | $envelope = array("expire"=>$expire, |
| 42 | - "createdAt"=>time(), |
|
| 43 | - "value"=>$value); |
|
| 42 | + "createdAt"=>time(), |
|
| 43 | + "value"=>$value); |
|
| 44 | 44 | $filename = $this->_stateFilename($key); |
| 45 | 45 | |
| 46 | 46 | file_put_contents($filename, serialize($envelope)); |
@@ -72,12 +72,12 @@ discard block |
||
| 72 | 72 | if (file_exists($filename)) { |
| 73 | 73 | $envelope = unserialize(file_get_contents($filename)); |
| 74 | 74 | if ($envelope["expire"]!=0) { |
| 75 | - // This data is time-limited. If it's too old we discard it. |
|
| 76 | - if (time()-$envelope["createdAt"] > $envelope["expire"]) { |
|
| 77 | - $this->unsetValue($key); |
|
| 78 | - $this->logger->error('Unable to retrieve the state storage value, it is expired'); |
|
| 79 | - return NULL; |
|
| 80 | - } |
|
| 75 | + // This data is time-limited. If it's too old we discard it. |
|
| 76 | + if (time()-$envelope["createdAt"] > $envelope["expire"]) { |
|
| 77 | + $this->unsetValue($key); |
|
| 78 | + $this->logger->error('Unable to retrieve the state storage value, it is expired'); |
|
| 79 | + return NULL; |
|
| 80 | + } |
|
| 81 | 81 | } |
| 82 | 82 | return $envelope["value"]; |
| 83 | 83 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | * (non-PHPdoc) |
| 37 | 37 | * @see library/tiqr/Tiqr/StateStorage/Tiqr_StateStorage_Abstract::setValue() |
| 38 | 38 | */ |
| 39 | - public function setValue($key, $value, $expire=0) |
|
| 39 | + public function setValue($key, $value, $expire = 0) |
|
| 40 | 40 | { |
| 41 | 41 | $envelope = array("expire"=>$expire, |
| 42 | 42 | "createdAt"=>time(), |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | $filename = $this->_stateFilename($key); |
| 72 | 72 | if (file_exists($filename)) { |
| 73 | 73 | $envelope = unserialize(file_get_contents($filename)); |
| 74 | - if ($envelope["expire"]!=0) { |
|
| 74 | + if ($envelope["expire"] != 0) { |
|
| 75 | 75 | // This data is time-limited. If it's too old we discard it. |
| 76 | - if (time()-$envelope["createdAt"] > $envelope["expire"]) { |
|
| 76 | + if (time() - $envelope["createdAt"] > $envelope["expire"]) { |
|
| 77 | 77 | $this->unsetValue($key); |
| 78 | 78 | $this->logger->error('Unable to retrieve the state storage value, it is expired'); |
| 79 | 79 | return NULL; |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | private function cleanExpired() { |
| 73 | 73 | $sth = $this->handle->prepare("DELETE FROM ".$this->tablename." WHERE `expire` < ? AND NOT `expire` = 0"); |
| 74 | - if (!$sth->execute(array(time()))){ |
|
| 74 | + if (!$sth->execute(array(time()))) { |
|
| 75 | 75 | $this->logger->error('Unable to remove expired keys from the pdo state storage'); |
| 76 | 76 | } |
| 77 | 77 | } |
@@ -80,9 +80,9 @@ discard block |
||
| 80 | 80 | * (non-PHPdoc) |
| 81 | 81 | * @see library/tiqr/Tiqr/StateStorage/Tiqr_StateStorage_Abstract::setValue() |
| 82 | 82 | */ |
| 83 | - public function setValue($key, $value, $expire=0) |
|
| 83 | + public function setValue($key, $value, $expire = 0) |
|
| 84 | 84 | { |
| 85 | - if (((float) rand() /(float) getrandmax()) < $this->cleanupProbability) { |
|
| 85 | + if (((float) rand() / (float) getrandmax()) < $this->cleanupProbability) { |
|
| 86 | 86 | $this->cleanExpired(); |
| 87 | 87 | } |
| 88 | 88 | if ($this->keyExists($key)) { |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | // $expire == 0 means never expire |
| 94 | 94 | if ($expire != 0) { |
| 95 | - $expire+=time(); // Store unix timestamp after which the expires |
|
| 95 | + $expire += time(); // Store unix timestamp after which the expires |
|
| 96 | 96 | } |
| 97 | - $sth->execute(array(serialize($value),$expire,$key)); |
|
| 97 | + $sth->execute(array(serialize($value), $expire, $key)); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | $this->logger->error('Unable to prepare the get key statement'); |
| 122 | 122 | return NULL; |
| 123 | 123 | } |
| 124 | - if (false === $sth->execute(array($key, time())) ) { |
|
| 124 | + if (false === $sth->execute(array($key, time()))) { |
|
| 125 | 125 | $this->logger->error('Unable to get key from the pdo state storage'); |
| 126 | 126 | return NULL; |
| 127 | 127 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * @param mixed $value The data to store in state storage |
| 48 | 48 | * @param int $expire The expiration (in seconds) of the data |
| 49 | 49 | */ |
| 50 | - public abstract function setValue($key, $value, $expire=0); |
|
| 50 | + public abstract function setValue($key, $value, $expire = 0); |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Remove a value from the state storage |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * a state storage instance of a certain type. |
| 82 | 82 | * @param array $options An array of options for the state storage |
| 83 | 83 | */ |
| 84 | - public function __construct($options=array(), LoggerInterface $logger) |
|
| 84 | + public function __construct($options = array(), LoggerInterface $logger) |
|
| 85 | 85 | { |
| 86 | 86 | $this->logger = $logger; |
| 87 | 87 | $this->_options = $options; |