Skip to content

Commit ebb2603

Browse files
committed
Fix misc stuff
1 parent 15c2f26 commit ebb2603

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ requires PHP 5.6 or newer and OpenSSL 1.0.1 or newer.** We recommend using a
1616
version of PHP that [still has security
1717
support](https://www.php.net/supported-versions.php), which at the time of
1818
writing means PHP 7.3 or later. Using this library with an unsupported
19-
version of PHP could lead to security vulnerabilities. This library is not
20-
currently tested against PHP 8.0.
19+
version of PHP could lead to security vulnerabilities.
2120

2221
The current version of `php-encryption` is v2.3. This library is expected to
2322
remain stable and supported by its authors with security and bugfixes until at

src/File.php

+7
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ public static function decryptResourceWithPassword($inputHandle, $outputHandle,
191191
*/
192192
private static function encryptFileInternal($inputFilename, $outputFilename, KeyOrPassword $secret)
193193
{
194+
if (realpath($inputFilename) === realpath($outputFilename)) {
195+
throw new Ex\IOException('Input and output filenames must be different.');
196+
}
194197
/* Open the input file. */
195198
$if = @\fopen($inputFilename, 'rb');
196199
if ($if === false) {
@@ -256,6 +259,10 @@ private static function encryptFileInternal($inputFilename, $outputFilename, Key
256259
*/
257260
private static function decryptFileInternal($inputFilename, $outputFilename, KeyOrPassword $secret)
258261
{
262+
if (realpath($inputFilename) === realpath($outputFilename)) {
263+
throw new Ex\IOException('Input and output filenames must be different.');
264+
}
265+
259266
/* Open the input file. */
260267
$if = @\fopen($inputFilename, 'rb');
261268
if ($if === false) {

test/unit/CoreTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function testOurSubstrOutOfBorders()
8080

8181
// We want to be like substr, so confirm that behavior.
8282
if (PHP_VERSION_ID < 80000) {
83-
// In PHP 8.0, substr starts returning '' instead of the empty string.
83+
// In PHP 8.0, substr starts returning '' instead of false.
8484
// Core::ourSubstr should behave the OLD way.
8585
$this->assertSame(
8686
false,

0 commit comments

Comments
 (0)