From eb89b15c0f044673c1206a418a21d0baba1a675e Mon Sep 17 00:00:00 2001
From: RaindropsSys <contact@minteck.org>
Date: Sun, 12 Mar 2023 19:16:53 +0100
Subject: Updated 104 files, added 3 files, deleted 4 files and renamed 36
 files (automated)

---
 includes/random.inc | 15 ---------------
 1 file changed, 15 deletions(-)
 delete mode 100644 includes/random.inc

(limited to 'includes/random.inc')

diff --git a/includes/random.inc b/includes/random.inc
deleted file mode 100644
index b6e7905..0000000
--- a/includes/random.inc
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-/**
- * @throws Exception
- */
-function random($length = 13): string {
-    if (function_exists("random_bytes")) {
-        $bytes = random_bytes(ceil($length / 2));
-    } elseif (function_exists("openssl_random_pseudo_bytes")) {
-        $bytes = openssl_random_pseudo_bytes(ceil($length / 2));
-    } else {
-        throw new Exception("No cryptographically secure random function available");
-    }
-    return substr(bin2hex($bytes), 0, $length);
-}
\ No newline at end of file
-- 
cgit