Skip to content

Commit

Permalink
Merge pull request #561 from nextcloud/backport/556/stable26
Browse files Browse the repository at this point in the history
[stable26] fix: Correctly check result of function
  • Loading branch information
blizzz authored May 23, 2024
2 parents be2ed68 + b4d5139 commit 75ee915
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -688,12 +688,12 @@ public function verifyIntegrity() {
-----END CERTIFICATE-----
EOF;

$validSignature = (bool)openssl_verify(
$validSignature = openssl_verify(
file_get_contents($this->getDownloadedFilePath()),
base64_decode($response['signature']),
$certificate,
OPENSSL_ALGO_SHA512
);
) === 1;

if ($validSignature === false) {
throw new \Exception('Signature of update is not valid');
Expand Down
4 changes: 2 additions & 2 deletions lib/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -652,12 +652,12 @@ public function verifyIntegrity() {
-----END CERTIFICATE-----
EOF;

$validSignature = (bool)openssl_verify(
$validSignature = openssl_verify(
file_get_contents($this->getDownloadedFilePath()),
base64_decode($response['signature']),
$certificate,
OPENSSL_ALGO_SHA512
);
) === 1;

if ($validSignature === false) {
throw new \Exception('Signature of update is not valid');
Expand Down
Binary file modified updater.phar
Binary file not shown.

0 comments on commit 75ee915

Please sign in to comment.