This commit is contained in:
2026-02-28 18:53:26 +01:00
parent 9eb7740027
commit d28f171263
11 changed files with 30 additions and 22 deletions

View File

@@ -99,4 +99,11 @@ class mcServApi {
return true;
}
public function generateSessionID() {
$num = rand(1, 999999);
$hash = hash("sha256", $num);
return $hash;
}
}