Completed
Push — master ( b3313b...3c71ae )
by Scott
01:58
created
lib/cast_to_int.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- *
6
- * The MIT License (MIT)
7
- *
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- *
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- *
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     *
6
+     * The MIT License (MIT)
7
+     *
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     *
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     *
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     *
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 if (!function_exists('RandomCompat_intval')) {
30 30
     
Please login to merge, or discard this patch.
lib/random_int.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Fetch a random integer between $min and $max inclusive
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
          */
119 119
         while ($range > 0) {
120 120
             if ($bits % 8 === 0) {
121
-               ++$bytes;
121
+                ++$bytes;
122 122
             }
123 123
             ++$bits;
124 124
             $range >>= 1;
Please login to merge, or discard this patch.
lib/error_polyfill.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Since openssl_random_pseudo_bytes() uses openssl's 
Please login to merge, or discard this patch.
lib/random_bytes_com_dotnet.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Since openssl_random_pseudo_bytes() uses openssl's 
Please login to merge, or discard this patch.
lib/random_bytes_mcrypt.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Since openssl_random_pseudo_bytes() uses openssl's 
Please login to merge, or discard this patch.
lib/random_bytes_dev_urandom.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Since openssl_random_pseudo_bytes() uses openssl's 
Please login to merge, or discard this patch.
lib/random_bytes_libsodium.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library 
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- * 
6
- * The MIT License (MIT)
7
- * 
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- * 
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * 
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- * 
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library 
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     * 
6
+     * The MIT License (MIT)
7
+     * 
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     * 
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     * 
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     * 
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 /**
30 30
  * Since openssl_random_pseudo_bytes() uses openssl's 
Please login to merge, or discard this patch.
other/build_phar.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,24 +1,24 @@  discard block
 block discarded – undo
1 1
 <?php
2
-$dist = dirname(__DIR__).'/dist';
2
+$dist = dirname(__DIR__) . '/dist';
3 3
 if (!is_dir($dist)) {
4 4
     mkdir($dist, 0755);
5 5
 }
6
-if (file_exists($dist.'/random_compat.phar')) {
7
-    unlink($dist.'/random_compat.phar');
6
+if (file_exists($dist . '/random_compat.phar')) {
7
+    unlink($dist . '/random_compat.phar');
8 8
 }
9 9
 $phar = new Phar(
10
-    $dist.'/random_compat.phar',
10
+    $dist . '/random_compat.phar',
11 11
     FilesystemIterator::CURRENT_AS_FILEINFO | \FilesystemIterator::KEY_AS_FILENAME,
12 12
     'random_compat.phar'
13 13
 );
14 14
 rename(
15
-    dirname(__DIR__).'/lib/random.php', 
16
-    dirname(__DIR__).'/lib/index.php'
15
+    dirname(__DIR__) . '/lib/random.php', 
16
+    dirname(__DIR__) . '/lib/index.php'
17 17
 );
18
-$phar->buildFromDirectory(dirname(__DIR__).'/lib');
18
+$phar->buildFromDirectory(dirname(__DIR__) . '/lib');
19 19
 rename(
20
-    dirname(__DIR__).'/lib/index.php', 
21
-    dirname(__DIR__).'/lib/random.php'
20
+    dirname(__DIR__) . '/lib/index.php', 
21
+    dirname(__DIR__) . '/lib/random.php'
22 22
 );
23 23
 
24 24
 /**
@@ -43,10 +43,10 @@  discard block
 block discarded – undo
43 43
         /**
44 44
          * Save the corresponding public key to the file
45 45
          */
46
-        if (!@is_readable($dist.'/random_compat.phar.pubkey')) {
46
+        if (!@is_readable($dist . '/random_compat.phar.pubkey')) {
47 47
             $details = openssl_pkey_get_details($private);
48 48
             file_put_contents(
49
-                $dist.'/random_compat.phar.pubkey',
49
+                $dist . '/random_compat.phar.pubkey',
50 50
                 $details['key']
51 51
             );
52 52
         }
Please login to merge, or discard this patch.
lib/byte_safe_strings.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Random_* Compatibility Library
4
- * for using the new PHP 7 random_* API in PHP 5 projects
5
- *
6
- * The MIT License (MIT)
7
- *
8
- * Copyright (c) 2015 Paragon Initiative Enterprises
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- *
17
- * The above copyright notice and this permission notice shall be included in
18
- * all copies or substantial portions of the Software.
19
- *
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- * SOFTWARE.
27
- */
3
+     * Random_* Compatibility Library
4
+     * for using the new PHP 7 random_* API in PHP 5 projects
5
+     *
6
+     * The MIT License (MIT)
7
+     *
8
+     * Copyright (c) 2015 Paragon Initiative Enterprises
9
+     *
10
+     * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+     * of this software and associated documentation files (the "Software"), to deal
12
+     * in the Software without restriction, including without limitation the rights
13
+     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+     * copies of the Software, and to permit persons to whom the Software is
15
+     * furnished to do so, subject to the following conditions:
16
+     *
17
+     * The above copyright notice and this permission notice shall be included in
18
+     * all copies or substantial portions of the Software.
19
+     *
20
+     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+     * SOFTWARE.
27
+     */
28 28
 
29 29
 if (!function_exists('RandomCompat_intval')) {
30 30
     
Please login to merge, or discard this patch.