From dfc32b1b8b7d1686d8c8c4fa55a2eb413abfbe9a Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 12 Jun 2021 02:08:12 +0200 Subject: Remove function "getRandomValue" This commit removes the "getRandomValue" function. In addition, the Application class now calls PHPs "random_bytes" function directly. --- core/namespace/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/namespace/Application.php') diff --git a/core/namespace/Application.php b/core/namespace/Application.php index 64e562d..6a77865 100644 --- a/core/namespace/Application.php +++ b/core/namespace/Application.php @@ -72,7 +72,7 @@ class Application { #=============================================================================== public static function getSecurityToken(): string { if(!isset($_SESSION['token'])) { - $_SESSION['token'] = getRandomValue(); + $_SESSION['token'] = bin2hex(random_bytes(16)); } return $_SESSION['token']; -- cgit v1.2.3