Fixed bug in decrypt.php

This commit is contained in:
Norman 2020-12-05 17:15:03 -08:00
부모 5d0abf9db9
커밋 a8a7fb6b5f
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -1,7 +1,5 @@
<?php
require_once 'config.inc.php';
// Load private key
$privKey = base64_decode(file_get_contents("key.private"));
$pubKey = base64_decode(file_get_contents("key.public"));
@ -18,7 +16,7 @@ foreach ($encrypted_submissions as $encrypted) {
$decryptedData = sodium_crypto_box_seal_open(base64_decode($parts[1]), $keypair);
// Parse exported variable
eval('$vars = '.$decryptedData.';');
$vars = json_decode($decryptedData, true);
// Print :)
foreach ($vars as $k => $v){