Update gameserver.php

This commit is contained in:
Thomas G 2022-07-10 22:20:40 +10:00
parent bfa60a0147
commit d9c03b6822
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ Game:GetService("RunService"):Run()
<?php
$data = ob_get_clean();
$signature;
$key = file_get_contents("./PrivateKey.pem");
$key = file_get_contents("../GameRBLX/PrivKey.pem");
openssl_sign($data, $signature, $key, OPENSSL_ALGO_SHA1);
echo "" . sprintf("%%%s%%%s", base64_encode($signature), $data);
?>