From 67b1565ef88ea588dc98243418c1e9b930eb7ee1 Mon Sep 17 00:00:00 2001 From: RalphORama Date: Tue, 24 Oct 2017 16:16:25 -0400 Subject: [PATCH] Replace mcrypt_create_iv with random_bytes `mcrypt_create_iv()` was deprecated in PHP 7.1.0. --- inc/mod/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/mod/auth.php b/inc/mod/auth.php index 42f34196..6dcad3a1 100644 --- a/inc/mod/auth.php +++ b/inc/mod/auth.php @@ -70,7 +70,7 @@ function test_password($password, $salt, $test) { function generate_salt() { // 128 bits of entropy - return strtr(base64_encode(mcrypt_create_iv(16, MCRYPT_DEV_URANDOM)), '+', '.'); + return strtr(base64_encode(random_bytes(16)), '+', '.'); } function login($username, $password) {