Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Correctly check result of function
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed May 15, 2024
commit 4890017c91ececf9c26264580be96c6dd7911071
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.