Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
37 | public static function parseGreeting($greeting) |
||
38 | { |
||
39 | if ('Tarantool' !== substr($greeting, 0, 9)) { |
||
40 | throw new Exception('Invalid greeting: unable to recognize Tarantool server.'); |
||
41 | } |
||
42 | |||
43 | $salt = substr(base64_decode(substr($greeting, 64, 44), true), 0, 20); |
||
44 | |||
45 | if (isset($salt[19])) { |
||
46 | return $salt; |
||
47 | } |
||
48 | |||
49 | throw new Exception('Invalid greeting: unable to parse salt.'); |
||
50 | } |
||
51 | } |
||
52 |