Test Failed
Pull Request — develop (#53)
by Pieter van der
03:03
created
library/tiqr/Tiqr/OATH/OCRA.php 1 patch
Braces   +45 added lines, -33 removed lines patch added patch discarded remove patch
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
         $cryptoFunction = $components[1];
126 126
         $dataInput = strtolower($components[2]); // lower here so we can do case insensitive comparisons
127 127
 
128
-        if(stripos($cryptoFunction, "hotp-sha1")!==false)
129
-            $crypto = "sha1";
130
-        elseif(stripos($cryptoFunction, "hotp-sha256")!==false)
131
-            $crypto = "sha256";
132
-        elseif(stripos($cryptoFunction, "hotp-sha512")!==false)
133
-            $crypto = "sha512";
134
-        else {
128
+        if(stripos($cryptoFunction, "hotp-sha1")!==false) {
129
+                    $crypto = "sha1";
130
+        } elseif(stripos($cryptoFunction, "hotp-sha256")!==false) {
131
+                    $crypto = "sha256";
132
+        } elseif(stripos($cryptoFunction, "hotp-sha512")!==false) {
133
+                    $crypto = "sha512";
134
+        } else {
135 135
             throw new InvalidArgumentException('Unsupported OCRA CryptoFunction');
136 136
         }
137 137
 
@@ -149,56 +149,65 @@  discard block
 block discarded – undo
149 149
         // Counter
150 150
         if($dataInput[0] == "c" ) {
151 151
             // Fix the length of the HEX string
152
-            while(strlen($counter) < 16)
153
-                $counter = "0" . $counter;
152
+            while(strlen($counter) < 16) {
153
+                            $counter = "0" . $counter;
154
+            }
154 155
             $counterLength=8;
155 156
         }
156 157
         // Question
157 158
         if($dataInput[0] == "q" ||
158 159
                 stripos($dataInput, "-q")!==false) {
159
-            while(strlen($question) < 256)
160
-                $question = $question . "0";
160
+            while(strlen($question) < 256) {
161
+                            $question = $question . "0";
162
+            }
161 163
             $questionLength=128;
162 164
         }
163 165
 
164 166
         // Password
165 167
         if(stripos($dataInput, "psha1")!==false) {
166
-            while(strlen($password) < 40)
167
-                $password = "0" . $password;
168
+            while(strlen($password) < 40) {
169
+                            $password = "0" . $password;
170
+            }
168 171
             $passwordLength=20;
169 172
         }
170 173
     
171 174
         if(stripos($dataInput, "psha256")!==false) {
172
-            while(strlen($password) < 64)
173
-                $password = "0" . $password;
175
+            while(strlen($password) < 64) {
176
+                            $password = "0" . $password;
177
+            }
174 178
             $passwordLength=32;
175 179
         }
176 180
         
177 181
         if(stripos($dataInput, "psha512")!==false) {
178
-            while(strlen($password) < 128)
179
-                $password = "0" . $password;
182
+            while(strlen($password) < 128) {
183
+                            $password = "0" . $password;
184
+            }
180 185
             $passwordLength=64;
181 186
         }
182 187
         
183 188
         // sessionInformation
184 189
         if(stripos($dataInput, "s064") !==false) {
185
-            while(strlen($sessionInformation) < 128)
186
-                $sessionInformation = "0" . $sessionInformation;
190
+            while(strlen($sessionInformation) < 128) {
191
+                            $sessionInformation = "0" . $sessionInformation;
192
+            }
187 193
 
188 194
             $sessionInformationLength=64;
189 195
         } else if(stripos($dataInput, "s128") !==false) {
190
-            while(strlen($sessionInformation) < 256)
191
-                $sessionInformation = "0" . $sessionInformation;
196
+            while(strlen($sessionInformation) < 256) {
197
+                            $sessionInformation = "0" . $sessionInformation;
198
+            }
192 199
         
193 200
             $sessionInformationLength=128;
194 201
         } else if(stripos($dataInput, "s256") !==false) {
195
-            while(strlen($sessionInformation) < 512)
196
-                $sessionInformation = "0" . $sessionInformation;
202
+            while(strlen($sessionInformation) < 512) {
203
+                            $sessionInformation = "0" . $sessionInformation;
204
+            }
197 205
         
198 206
             $sessionInformationLength=256;
199 207
         } else if(stripos($dataInput, "s512") !==false) {
200
-            while(strlen($sessionInformation) < 128)
201
-                $sessionInformation = "0" . $sessionInformation;
208
+            while(strlen($sessionInformation) < 128) {
209
+                            $sessionInformation = "0" . $sessionInformation;
210
+            }
202 211
         
203 212
             $sessionInformationLength=64;
204 213
         } else if (stripos($dataInput, "-s") !== false ) {
@@ -210,8 +219,9 @@  discard block
 block discarded – undo
210 219
             // to prevent matching the "s" in the password input e.g. "psha1".
211 220
             // [C] | QFxx | [PH | Snnn | TG] : Challenge-Response computation
212 221
             // [C] | QFxx | [PH | TG] : Plain Signature computation
213
-            while(strlen($sessionInformation) < 128)
214
-                $sessionInformation = "0" . $sessionInformation;
222
+            while(strlen($sessionInformation) < 128) {
223
+                            $sessionInformation = "0" . $sessionInformation;
224
+            }
215 225
             
216 226
             $sessionInformationLength=64;
217 227
         }
@@ -221,8 +231,9 @@  discard block
 block discarded – undo
221 231
         // TimeStamp
222 232
         if($dataInput[0] == "t" ||
223 233
                 stripos($dataInput, "-t") !== false) {
224
-            while(strlen($timeStamp) < 16)
225
-                $timeStamp = "0" . $timeStamp;
234
+            while(strlen($timeStamp) < 16) {
235
+                            $timeStamp = "0" . $timeStamp;
236
+            }
226 237
             $timeStampLength=8;
227 238
         }
228 239
 
@@ -289,10 +300,11 @@  discard block
 block discarded – undo
289 300
 
290 301
         $hash = self::_hmac($crypto, $byteKey, $msg);
291 302
 
292
-        if ($codeDigits == 0)
293
-            $result = $hash;
294
-        else
295
-            $result = self::_oath_truncate($hash, $codeDigits);
303
+        if ($codeDigits == 0) {
304
+                    $result = $hash;
305
+        } else {
306
+                    $result = self::_oath_truncate($hash, $codeDigits);
307
+        }
296 308
              
297 309
         return $result;
298 310
     }
Please login to merge, or discard this patch.
library/tiqr/Tiqr/OATH/OCRAParser.php 1 patch
Indentation   +201 added lines, -201 removed lines patch added patch discarded remove patch
@@ -2,32 +2,32 @@  discard block
 block discarded – undo
2 2
 
3 3
 class OATH_OCRAParser {
4 4
 
5
-	private $OCRASuite = NULL;
5
+    private $OCRASuite = NULL;
6 6
 
7
-	private $OCRAVersion = NULL;
7
+    private $OCRAVersion = NULL;
8 8
 
9
-	private $CryptoFunctionType = NULL;
10
-	private $CryptoFunctionHash = NULL;
11
-	private $CryptoFunctionHashLength = NULL;
12
-	private $CryptoFunctionTruncation = NULL;
9
+    private $CryptoFunctionType = NULL;
10
+    private $CryptoFunctionHash = NULL;
11
+    private $CryptoFunctionHashLength = NULL;
12
+    private $CryptoFunctionTruncation = NULL;
13 13
 
14
-	private $C = FALSE;
15
-	private $Q = FALSE;
16
-	private $QType = 'N';
17
-	private $QLength = 8;
14
+    private $C = FALSE;
15
+    private $Q = FALSE;
16
+    private $QType = 'N';
17
+    private $QLength = 8;
18 18
 
19
-	private $P = FALSE;
20
-	private $PType = 'SHA1';
21
-	private $PLength = 20;
19
+    private $P = FALSE;
20
+    private $PType = 'SHA1';
21
+    private $PLength = 20;
22 22
 
23
-	private $S = FALSE;
24
-	private $SLength = 64;
23
+    private $S = FALSE;
24
+    private $SLength = 64;
25 25
 
26
-	private $T = FALSE;
27
-	private $TLength = 60; // 1M
28
-	private $TPeriods = array('H' => 3600, 'M' => 60, 'S' => 1);
26
+    private $T = FALSE;
27
+    private $TLength = 60; // 1M
28
+    private $TPeriods = array('H' => 3600, 'M' => 60, 'S' => 1);
29 29
 
30
-	private $supportedHashFunctions = array('SHA1' => 20, 'SHA256' => 32, 'SHA512' => 64);
30
+    private $supportedHashFunctions = array('SHA1' => 20, 'SHA256' => 32, 'SHA512' => 64);
31 31
 
32 32
 
33 33
     /**
@@ -35,149 +35,149 @@  discard block
 block discarded – undo
35 35
      * @throws Exception
36 36
      */
37 37
     public function __construct(String $ocraSuite) {
38
-		$this->parseOCRASuite($ocraSuite);
39
-	}
38
+        $this->parseOCRASuite($ocraSuite);
39
+    }
40 40
 
41
-	/**
42
-	 * Inspired by https://github.com/bdauvergne/python-oath
41
+    /**
42
+     * Inspired by https://github.com/bdauvergne/python-oath
43 43
      *
44 44
      * @throws Exception
45
-	 */
46
-	private function parseOCRASuite($ocraSuite) {
47
-		if (!is_string($ocraSuite)) {
48
-			throw new Exception('OCRASuite not in string format: ' . var_export($ocraSuite, TRUE));
49
-		}
50
-
51
-		$ocraSuite = strtoupper($ocraSuite);
52
-		$this->OCRASuite = $ocraSuite;
53
-
54
-		$s = explode(':', $ocraSuite);
55
-		if (count($s) != 3) {
56
-			throw new Exception('Invalid OCRASuite format: ' . var_export($ocraSuite, TRUE));
57
-		}
58
-
59
-		$algo = explode('-', $s[0]);
60
-		if (count($algo) != 2) {
61
-			throw new Exception('Invalid OCRA version: ' . var_export($s[0], TRUE));
62
-		}
63
-
64
-		if ($algo[0] !== 'OCRA') {
65
-			throw new Exception('Unsupported OCRA algorithm: ' . var_export($algo[0], TRUE));
66
-		}
67
-
68
-		if ($algo[1] !== '1') {
69
-			throw new Exception('Unsupported OCRA version: ' . var_export($algo[1], TRUE));
70
-		}
71
-		$this->OCRAVersion = $algo[1];
72
-
73
-		$cf = explode('-', $s[1]);
74
-		if (count($cf) != 3) {
75
-			throw new Exception('Invalid OCRA suite crypto function: ' . var_export($s[1], TRUE));
76
-		}
77
-
78
-		if ($cf[0] !== 'HOTP') {
79
-			throw new Exception('Unsupported OCRA suite crypto function: ' . var_export($cf[0], TRUE));
80
-		}
81
-		$this->CryptoFunctionType = $cf[0];
82
-
83
-		if (!array_key_exists($cf[1], $this->supportedHashFunctions)) {
84
-			throw new Exception('Unsupported hash function in OCRA suite crypto function: ' . var_export($cf[1], TRUE));
85
-		}
86
-		$this->CryptoFunctionHash = $cf[1];
87
-		$this->CryptoFunctionHashLength = $this->supportedHashFunctions[$cf[1]];
88
-
89
-		if (!preg_match('/^\d+$/', $cf[2]) || (($cf[2] < 4 || $cf[2] > 10) && $cf[2] != 0)) {
90
-			throw new Exception('Invalid OCRA suite crypto function truncation length: ' . var_export($cf[2], TRUE));
91
-		}
92
-		$this->CryptoFunctionTruncation = intval($cf[2]);
93
-
94
-		$di = explode('-', $s[2]);
95
-		if (count($cf) == 0) {
96
-			throw new Exception('Invalid OCRA suite data input: ' . var_export($s[2], TRUE));
97
-		}
98
-
99
-		$data_input = array();
100
-		foreach($di as $elem) {
101
-			$letter = $elem[0];
102
-			if (array_key_exists($letter, $data_input)) {
103
-				throw new Exception('Duplicate field in OCRA suite data input: ' . var_export($elem, TRUE));
104
-			}
105
-			$data_input[$letter] = 1;
106
-
107
-			if ($letter === 'C' && strlen($elem) == 1) {
108
-				$this->C = TRUE;
109
-			} elseif ($letter === 'Q') {
110
-				if (strlen($elem) == 1) {
111
-					$this->Q = TRUE;
112
-				} elseif (preg_match('/^Q([AHN])(\d+)$/', $elem, $match)) {
113
-					$q_len = intval($match[2]);
114
-					if ($q_len < 4 || $q_len > 64) {
115
-						throw new Exception('Invalid OCRA suite data input question length: ' . var_export($q_len, TRUE));
116
-					}
117
-					$this->Q = TRUE;
118
-					$this->QType = $match[1];
119
-					$this->QLength = $q_len;
120
-				} else {
121
-					throw new Exception('Invalid OCRA suite data input question: ' . var_export($elem, TRUE));
122
-				}
123
-			} elseif ($letter === 'P') {
124
-				if (strlen($elem) == 1) {
125
-					$this->P = TRUE;
126
-				} else {
127
-					$p_algo = substr($elem, 1);
128
-					if (!array_key_exists($p_algo, $this->supportedHashFunctions)) {
129
-						throw new Exception('Unsupported OCRA suite PIN hash function: ' . var_export($elem, TRUE));
130
-					}
131
-					$this->P = TRUE;
132
-					$this->PType = $p_algo;
133
-					$this->PLength = $this->supportedHashFunctions[$p_algo];
134
-				}
135
-			} elseif ($letter === 'S') {
136
-				if (strlen($elem) == 1) {
137
-					$this->S = TRUE;
138
-				} elseif (preg_match('/^S(\d+)$/', $elem, $match)) {
139
-					$s_len = intval($match[1]);
140
-					if ($s_len <= 0 || $s_len > 512) {
141
-						throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($s_len, TRUE));
142
-					}
143
-
144
-					$this->S = TRUE;
145
-					$this->SLength = $s_len;
146
-				} else {
147
-					throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($elem, TRUE));
148
-				}
149
-			} elseif ($letter === 'T') {
150
-				if (strlen($elem) == 1) {
151
-					$this->T = TRUE;
152
-				} elseif (preg_match('/^T(\d+[HMS])+$/', $elem)) {
153
-					preg_match_all('/(\d+)([HMS])/', $elem, $match);
154
-
155
-					if (count($match[1]) !== count(array_unique($match[2]))) {
156
-						throw new Exception('Duplicate definitions in OCRA suite data input timestamp: ' . var_export($elem, TRUE));
157
-					}
158
-
159
-					$length = 0;
160
-					for ($i = 0; $i < count($match[1]); $i++) {
161
-						$length += intval($match[1][$i]) * $this->TPeriods[$match[2][$i]];
162
-					}
163
-					if ($length <= 0) {
164
-						throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE));
165
-					}
166
-
167
-					$this->T = TRUE;
168
-					$this->TLength = $length;
169
-				} else {
170
-					throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE));
171
-				}
172
-			} else {
173
-				throw new Exception('Unsupported OCRA suite data input field: ' . var_export($elem, TRUE));
174
-			}
175
-		}
176
-
177
-		if (!$this->Q) {
178
-			throw new Exception('OCRA suite data input question not defined: ' . var_export($s[2], TRUE));
179
-		}
180
-	}
45
+     */
46
+    private function parseOCRASuite($ocraSuite) {
47
+        if (!is_string($ocraSuite)) {
48
+            throw new Exception('OCRASuite not in string format: ' . var_export($ocraSuite, TRUE));
49
+        }
50
+
51
+        $ocraSuite = strtoupper($ocraSuite);
52
+        $this->OCRASuite = $ocraSuite;
53
+
54
+        $s = explode(':', $ocraSuite);
55
+        if (count($s) != 3) {
56
+            throw new Exception('Invalid OCRASuite format: ' . var_export($ocraSuite, TRUE));
57
+        }
58
+
59
+        $algo = explode('-', $s[0]);
60
+        if (count($algo) != 2) {
61
+            throw new Exception('Invalid OCRA version: ' . var_export($s[0], TRUE));
62
+        }
63
+
64
+        if ($algo[0] !== 'OCRA') {
65
+            throw new Exception('Unsupported OCRA algorithm: ' . var_export($algo[0], TRUE));
66
+        }
67
+
68
+        if ($algo[1] !== '1') {
69
+            throw new Exception('Unsupported OCRA version: ' . var_export($algo[1], TRUE));
70
+        }
71
+        $this->OCRAVersion = $algo[1];
72
+
73
+        $cf = explode('-', $s[1]);
74
+        if (count($cf) != 3) {
75
+            throw new Exception('Invalid OCRA suite crypto function: ' . var_export($s[1], TRUE));
76
+        }
77
+
78
+        if ($cf[0] !== 'HOTP') {
79
+            throw new Exception('Unsupported OCRA suite crypto function: ' . var_export($cf[0], TRUE));
80
+        }
81
+        $this->CryptoFunctionType = $cf[0];
82
+
83
+        if (!array_key_exists($cf[1], $this->supportedHashFunctions)) {
84
+            throw new Exception('Unsupported hash function in OCRA suite crypto function: ' . var_export($cf[1], TRUE));
85
+        }
86
+        $this->CryptoFunctionHash = $cf[1];
87
+        $this->CryptoFunctionHashLength = $this->supportedHashFunctions[$cf[1]];
88
+
89
+        if (!preg_match('/^\d+$/', $cf[2]) || (($cf[2] < 4 || $cf[2] > 10) && $cf[2] != 0)) {
90
+            throw new Exception('Invalid OCRA suite crypto function truncation length: ' . var_export($cf[2], TRUE));
91
+        }
92
+        $this->CryptoFunctionTruncation = intval($cf[2]);
93
+
94
+        $di = explode('-', $s[2]);
95
+        if (count($cf) == 0) {
96
+            throw new Exception('Invalid OCRA suite data input: ' . var_export($s[2], TRUE));
97
+        }
98
+
99
+        $data_input = array();
100
+        foreach($di as $elem) {
101
+            $letter = $elem[0];
102
+            if (array_key_exists($letter, $data_input)) {
103
+                throw new Exception('Duplicate field in OCRA suite data input: ' . var_export($elem, TRUE));
104
+            }
105
+            $data_input[$letter] = 1;
106
+
107
+            if ($letter === 'C' && strlen($elem) == 1) {
108
+                $this->C = TRUE;
109
+            } elseif ($letter === 'Q') {
110
+                if (strlen($elem) == 1) {
111
+                    $this->Q = TRUE;
112
+                } elseif (preg_match('/^Q([AHN])(\d+)$/', $elem, $match)) {
113
+                    $q_len = intval($match[2]);
114
+                    if ($q_len < 4 || $q_len > 64) {
115
+                        throw new Exception('Invalid OCRA suite data input question length: ' . var_export($q_len, TRUE));
116
+                    }
117
+                    $this->Q = TRUE;
118
+                    $this->QType = $match[1];
119
+                    $this->QLength = $q_len;
120
+                } else {
121
+                    throw new Exception('Invalid OCRA suite data input question: ' . var_export($elem, TRUE));
122
+                }
123
+            } elseif ($letter === 'P') {
124
+                if (strlen($elem) == 1) {
125
+                    $this->P = TRUE;
126
+                } else {
127
+                    $p_algo = substr($elem, 1);
128
+                    if (!array_key_exists($p_algo, $this->supportedHashFunctions)) {
129
+                        throw new Exception('Unsupported OCRA suite PIN hash function: ' . var_export($elem, TRUE));
130
+                    }
131
+                    $this->P = TRUE;
132
+                    $this->PType = $p_algo;
133
+                    $this->PLength = $this->supportedHashFunctions[$p_algo];
134
+                }
135
+            } elseif ($letter === 'S') {
136
+                if (strlen($elem) == 1) {
137
+                    $this->S = TRUE;
138
+                } elseif (preg_match('/^S(\d+)$/', $elem, $match)) {
139
+                    $s_len = intval($match[1]);
140
+                    if ($s_len <= 0 || $s_len > 512) {
141
+                        throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($s_len, TRUE));
142
+                    }
143
+
144
+                    $this->S = TRUE;
145
+                    $this->SLength = $s_len;
146
+                } else {
147
+                    throw new Exception('Invalid OCRA suite data input session information length: ' . var_export($elem, TRUE));
148
+                }
149
+            } elseif ($letter === 'T') {
150
+                if (strlen($elem) == 1) {
151
+                    $this->T = TRUE;
152
+                } elseif (preg_match('/^T(\d+[HMS])+$/', $elem)) {
153
+                    preg_match_all('/(\d+)([HMS])/', $elem, $match);
154
+
155
+                    if (count($match[1]) !== count(array_unique($match[2]))) {
156
+                        throw new Exception('Duplicate definitions in OCRA suite data input timestamp: ' . var_export($elem, TRUE));
157
+                    }
158
+
159
+                    $length = 0;
160
+                    for ($i = 0; $i < count($match[1]); $i++) {
161
+                        $length += intval($match[1][$i]) * $this->TPeriods[$match[2][$i]];
162
+                    }
163
+                    if ($length <= 0) {
164
+                        throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE));
165
+                    }
166
+
167
+                    $this->T = TRUE;
168
+                    $this->TLength = $length;
169
+                } else {
170
+                    throw new Exception('Invalid OCRA suite data input timestamp: ' . var_export($elem, TRUE));
171
+                }
172
+            } else {
173
+                throw new Exception('Unsupported OCRA suite data input field: ' . var_export($elem, TRUE));
174
+            }
175
+        }
176
+
177
+        if (!$this->Q) {
178
+            throw new Exception('OCRA suite data input question not defined: ' . var_export($s[2], TRUE));
179
+        }
180
+    }
181 181
 
182 182
     /** Generate an OCRA challenge question according to the ocra suite specified in the constructor
183 183
      * @return String: The randomly generated OCRA question
@@ -190,50 +190,50 @@  discard block
 block discarded – undo
190 190
      * Note that the question string is the exact question string a specified in the OCRA strandard (RFC 6287)
191 191
      * The challenge is not yet hex encoded as expected by OCRA::generateOCRA()
192 192
      */
193
-	public function generateChallenge() : String {
194
-		$q_length = $this->QLength;
195
-		$q_type = $this->QType;
193
+    public function generateChallenge() : String {
194
+        $q_length = $this->QLength;
195
+        $q_type = $this->QType;
196 196
 
197 197
         $bytes = Tiqr_Random::randomBytes($q_length);
198 198
 
199
-		switch($q_type) {
200
-			case 'A':
201
-				$challenge = base64_encode($bytes);
202
-				$tr = implode("", unpack('H*', $bytes));
203
-				$challenge = rtrim(strtr($challenge, '+/', $tr), '=');
204
-				break;
205
-			case 'H':
206
-				$challenge = implode("", unpack('H*', $bytes));
207
-				break;
208
-			case 'N':
209
-				$challenge = implode("", unpack('N*', $bytes));
210
-				break;
211
-			default:
212
-				throw new Exception('Unsupported OCRASuite challenge type: ' . var_export($q_type, TRUE));
213
-				break;
214
-		}
215
-
216
-		$challenge = substr($challenge, 0, $q_length);
217
-
218
-		return $challenge;
219
-	}
220
-
221
-
222
-	/**
223
-	 * Constant time string comparison, see http://codahale.com/a-lesson-in-timing-attacks/
224
-	 */
225
-	public static function constEqual(string $s1, string $s2): bool {
226
-		if (strlen($s1) != strlen($s2)) {
227
-			return FALSE;
228
-		}
229
-
230
-		$result = TRUE;
231
-		$length = strlen($s1);
232
-		for ($i = 0; $i < $length; $i++) {
233
-			$result &= ($s1[$i] == $s2[$i]);
234
-		}
235
-
236
-		return (boolean)$result;
237
-	}
199
+        switch($q_type) {
200
+            case 'A':
201
+                $challenge = base64_encode($bytes);
202
+                $tr = implode("", unpack('H*', $bytes));
203
+                $challenge = rtrim(strtr($challenge, '+/', $tr), '=');
204
+                break;
205
+            case 'H':
206
+                $challenge = implode("", unpack('H*', $bytes));
207
+                break;
208
+            case 'N':
209
+                $challenge = implode("", unpack('N*', $bytes));
210
+                break;
211
+            default:
212
+                throw new Exception('Unsupported OCRASuite challenge type: ' . var_export($q_type, TRUE));
213
+                break;
214
+        }
215
+
216
+        $challenge = substr($challenge, 0, $q_length);
217
+
218
+        return $challenge;
219
+    }
220
+
221
+
222
+    /**
223
+     * Constant time string comparison, see http://codahale.com/a-lesson-in-timing-attacks/
224
+     */
225
+    public static function constEqual(string $s1, string $s2): bool {
226
+        if (strlen($s1) != strlen($s2)) {
227
+            return FALSE;
228
+        }
229
+
230
+        $result = TRUE;
231
+        $length = strlen($s1);
232
+        for ($i = 0; $i < $length; $i++) {
233
+            $result &= ($s1[$i] == $s2[$i]);
234
+        }
235
+
236
+        return (boolean)$result;
237
+    }
238 238
 
239 239
 }
Please login to merge, or discard this patch.