Chris@0
|
1 <?php
|
Chris@0
|
2 /**
|
Chris@17
|
3 * Random_* Compatibility Library
|
Chris@0
|
4 * for using the new PHP 7 random_* API in PHP 5 projects
|
Chris@17
|
5 *
|
Chris@0
|
6 * The MIT License (MIT)
|
Chris@0
|
7 *
|
Chris@16
|
8 * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
Chris@17
|
9 *
|
Chris@0
|
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
|
Chris@0
|
11 * of this software and associated documentation files (the "Software"), to deal
|
Chris@0
|
12 * in the Software without restriction, including without limitation the rights
|
Chris@0
|
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
Chris@0
|
14 * copies of the Software, and to permit persons to whom the Software is
|
Chris@0
|
15 * furnished to do so, subject to the following conditions:
|
Chris@17
|
16 *
|
Chris@0
|
17 * The above copyright notice and this permission notice shall be included in
|
Chris@0
|
18 * all copies or substantial portions of the Software.
|
Chris@17
|
19 *
|
Chris@0
|
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
Chris@0
|
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
Chris@0
|
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
Chris@0
|
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
Chris@0
|
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
Chris@0
|
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
Chris@0
|
26 * SOFTWARE.
|
Chris@0
|
27 */
|
Chris@0
|
28
|
Chris@0
|
29 if (!is_callable('random_bytes')) {
|
Chris@0
|
30 /**
|
Chris@0
|
31 * If the libsodium PHP extension is loaded, we'll use it above any other
|
Chris@0
|
32 * solution.
|
Chris@0
|
33 *
|
Chris@0
|
34 * libsodium-php project:
|
Chris@0
|
35 * @ref https://github.com/jedisct1/libsodium-php
|
Chris@0
|
36 *
|
Chris@0
|
37 * @param int $bytes
|
Chris@0
|
38 *
|
Chris@0
|
39 * @throws Exception
|
Chris@0
|
40 *
|
Chris@0
|
41 * @return string
|
Chris@0
|
42 */
|
Chris@0
|
43 function random_bytes($bytes)
|
Chris@0
|
44 {
|
Chris@0
|
45 try {
|
Chris@16
|
46 /** @var int $bytes */
|
Chris@0
|
47 $bytes = RandomCompat_intval($bytes);
|
Chris@0
|
48 } catch (TypeError $ex) {
|
Chris@0
|
49 throw new TypeError(
|
Chris@0
|
50 'random_bytes(): $bytes must be an integer'
|
Chris@0
|
51 );
|
Chris@0
|
52 }
|
Chris@0
|
53
|
Chris@0
|
54 if ($bytes < 1) {
|
Chris@0
|
55 throw new Error(
|
Chris@0
|
56 'Length must be greater than 0'
|
Chris@0
|
57 );
|
Chris@0
|
58 }
|
Chris@0
|
59
|
Chris@0
|
60 /**
|
Chris@0
|
61 * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be
|
Chris@0
|
62 * generated in one invocation.
|
Chris@0
|
63 */
|
Chris@16
|
64 /** @var string|bool $buf */
|
Chris@0
|
65 if ($bytes > 2147483647) {
|
Chris@0
|
66 $buf = '';
|
Chris@0
|
67 for ($i = 0; $i < $bytes; $i += 1073741824) {
|
Chris@0
|
68 $n = ($bytes - $i) > 1073741824
|
Chris@0
|
69 ? 1073741824
|
Chris@0
|
70 : $bytes - $i;
|
Chris@0
|
71 $buf .= \Sodium\randombytes_buf($n);
|
Chris@0
|
72 }
|
Chris@0
|
73 } else {
|
Chris@16
|
74 /** @var string|bool $buf */
|
Chris@0
|
75 $buf = \Sodium\randombytes_buf($bytes);
|
Chris@0
|
76 }
|
Chris@0
|
77
|
Chris@16
|
78 if (is_string($buf)) {
|
Chris@0
|
79 if (RandomCompat_strlen($buf) === $bytes) {
|
Chris@0
|
80 return $buf;
|
Chris@0
|
81 }
|
Chris@0
|
82 }
|
Chris@0
|
83
|
Chris@0
|
84 /**
|
Chris@0
|
85 * If we reach here, PHP has failed us.
|
Chris@0
|
86 */
|
Chris@0
|
87 throw new Exception(
|
Chris@0
|
88 'Could not gather sufficient random data'
|
Chris@0
|
89 );
|
Chris@0
|
90 }
|
Chris@0
|
91 }
|